branch: elpa/emacsql
commit f5da68e5f986c1b85ec7866ef091427db43107f2
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
Fix quoting in docstring
---
emacsql.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/emacsql.el b/emacsql.el
index cbc1de6486..bcbfd79259 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -296,7 +296,7 @@ Returns the result of the last evaluated BODY.
All column names must be provided in the query ($ and * are not
allowed). Hint: all of the bound identifiers must be known at
compile time. For example, in the expression below the variables
-'name' and 'phone' will be bound for the body.
+`name' and `phone' will be bound for the body.
(emacsql-with-bind db [:select [name phone] :from people]
(message \"Found %s with %s\" name phone))