summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnosis.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnosis.el b/gnosis.el
index 8d91c21..c3bad78 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -63,7 +63,7 @@
(cl-defun gnosis-update (table value where)
"Update records in TABLE with to new VALUE based on the given WHERE condition.
Example:
- (gnosis-update 'notes '(= main \"NEW VALUE\") '(= id 12))"
+ (gnosis-update `''notes `''(= main \"NEW VALUE\") `''(= id 12))"
(emacsql gnosis-db `[:update ,table :set ,value :where ,where]))
(cl-defun gnosis-get (value table &optional (restrictions '1=1))