Skip to content

Commit

Permalink
some spare comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Koss committed Mar 27, 2011
1 parent d35dc1d commit 07884ee
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ NETWORK:
# All contents below AUTOGENERATED are managed by pf
# Directives starting with '#!' will be preserved.
#!EXCLUDE: dicts
# TOTAL FILES: 22 (111,825 bytes)
# SIGNATURE: 62b0194896c9d43774c71858575dcb964fa70a5f
# TOTAL FILES: 22 (112,024 bytes)
# SIGNATURE: e1cc8ea8a32b1b6e99f7f689b7bfd600a5ae9c52
CACHE:
README.md
images/gradient.jpg
Expand Down
6 changes: 5 additions & 1 deletion scripts/ptrie-complete.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,11 @@ namespace.lookup('org.startpad.trie.packed').define(function (ns) {
Usage:
ptrie = new PackedTrie(<string> compressed);
bool = ptrie.isWord(word)
bool = ptrie.isWord(word);
longestWord = ptrie.match(string);
matchArray = ptrie.matches(string);
wordArray = ptrie.words(from, beyond, limit);
ptrie.enumerate(inode, prefix, context);
*/
var funcs = namespace.lookup('org.startpad.funcs');

Expand Down
6 changes: 5 additions & 1 deletion scripts/ptrie.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ namespace.lookup('org.startpad.trie.packed').define(function (ns) {
Usage:
ptrie = new PackedTrie(<string> compressed);
bool = ptrie.isWord(word)
bool = ptrie.isWord(word);
longestWord = ptrie.match(string);
matchArray = ptrie.matches(string);
wordArray = ptrie.words(from, beyond, limit);
ptrie.enumerate(inode, prefix, context);
*/
var funcs = namespace.lookup('org.startpad.funcs');

Expand Down

0 comments on commit 07884ee

Please sign in to comment.