author | Alberto Bertogli
<albertito@gmail.com> 2007-09-02 00:04:01 UTC |
committer | Alberto Bertogli
<albertito@gmail.com> 2007-09-02 00:04:01 UTC |
parent | 439ce6468f1129300ddd667b64c9ea7cacb2ba63 |
bindings/newlisp/nmdb.lsp | +6 | -6 |
diff --git a/bindings/newlisp/nmdb.lsp b/bindings/newlisp/nmdb.lsp index 40ebe37..4d9b747 100644 --- a/bindings/newlisp/nmdb.lsp +++ b/bindings/newlisp/nmdb.lsp @@ -14,13 +14,13 @@ ; (nmdb:db-get key) -> Gets the value associated to the given key, or -1. ; (nmdb:cache-get key) -> Like dbget but only get from the cache. ; -; (nmdb:db-set key val ) -> Sets the given key to the given value. -; (nmdb:sync-set key val ) -> Like db-set but synchronous. -; (nmdb:cache-set key val ) -> Like db-set but only set to the the cache. +; (nmdb:db-set key val) -> Sets the given key to the given value. +; (nmdb:sync-set key val) -> Like db-set but synchronous. +; (nmdb:cache-set key val) -> Like db-set but only set to the the cache. ; -; (nmdb:db-del key ) -> Removes the given key from the database. -; (nmdb:sync-del key ) -> Like db-del but synchronous. -; (nmdb:cache-del key ) -> Like db-del but only delete from the cache. +; (nmdb:db-del key) -> Removes the given key from the database. +; (nmdb:sync-del key) -> Like db-del but synchronous. +; (nmdb:cache-del key) -> Like db-del but only delete from the cache. ; ; ; Example: