Skip to content

Commit 0edf9ce

Browse files
committed
Use only js in documentation examples
1 parent 5b9c734 commit 0edf9ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coffee/api.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ class Database
429429
### Register a custom function with SQLite
430430
@example Register a simple function
431431
db.create_function("addOne", function(x) {return x+1;})
432-
db.exec("SELECT addOne(1)") # 2
432+
db.exec("SELECT addOne(1)") // = 2
433433
434434
@param name [String] the name of the function as referenced in SQL statements.
435435
@param func [Function] the actual function to be executed.

0 commit comments

Comments
 (0)