Method: MMToDo::ToDoApp#mark_done

Defined in:
lib/mm_todo/todo_app.rb

#mark_doneObject



61
62
63
64
65
66
# File 'lib/mm_todo/todo_app.rb', line 61

def mark_done
	@input.clear
	puts "Which number?"
	selection = $stdin.gets.chomp
	check_selection(selection)
end