Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Caswell authored and Tim Caswell committed Aug 13, 2009
1 parent 5d73187 commit 4cfab6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ controller generator that makes building a simple in-memory data controller easy
];

function on_change(id) {
node.debug(id, JSON.stringify(people(id)));
node.debug(id, JSON.stringify(people[id]));
}

function onLoad() {
Expand Down
2 changes: 1 addition & 1 deletion memresourced.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var people = [
];

function on_change(id) {
node.debug(id, JSON.stringify(people(id)));
node.debug(id, JSON.stringify(people[id]));
}

function onLoad() {
Expand Down

0 comments on commit 4cfab6c

Please sign in to comment.