From a9485e405a4c29abe97fd06b2c5e9d58ecf57ef2 Mon Sep 17 00:00:00 2001 From: Arvin Sevilla <33614172+sevillaarvin@users.noreply.github.com> Date: Thu, 16 Mar 2023 20:37:23 +0800 Subject: [PATCH] docs(faq): update reference to close function At the time of this commit, the `close()` function is now at lines 81-101. --- _faq/goes-against-grain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_faq/goes-against-grain.md b/_faq/goes-against-grain.md index 32b693c..e074188 100644 --- a/_faq/goes-against-grain.md +++ b/_faq/goes-against-grain.md @@ -16,7 +16,7 @@ Here are some of the places in the source code of todomvc in various languages. ### Backbone.js -In the view of the backbone todomvc app, there are lots of event handlers that on their own is relatively simple, but they are chained together in odd ways. Let's look, for example, at [the `close` function](https://github.com/tastejs/todomvc/blob/gh-pages/examples/backbone/js/views/todo-view.js#L79-L99): +In the view of the backbone todomvc app, there are lots of event handlers that on their own is relatively simple, but they are chained together in odd ways. Let's look, for example, at [the `close` function](https://github.com/tastejs/todomvc/blob/gh-pages/examples/backbone/js/views/todo-view.js#L81-L101): ```js // Close the `"editing"` mode, saving changes to the todo.