diff options
author | Stefan <mu.stefan@googlemail.com> | 2015-08-15 22:41:59 +0200 |
---|---|---|
committer | Stefan <mu.stefan@googlemail.com> | 2015-08-15 22:41:59 +0200 |
commit | f27aacc5bffa4ac3547e57e7453be963d5588199 (patch) | |
tree | 95902308e368dec2b8fabe71e63ab7f3800bda94 /src/node/db | |
parent | c8d7e6e0b8f0db79b909800ae4e5393485969f72 (diff) | |
download | etherpad-lite-f27aacc5bffa4ac3547e57e7453be963d5588199.zip |
Fix missing bracket
Diffstat (limited to 'src/node/db')
-rw-r--r-- | src/node/db/API.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/db/API.js b/src/node/db/API.js index 97d5162d..a6f5cb0d 100644 --- a/src/node/db/API.js +++ b/src/node/db/API.js @@ -499,7 +499,7 @@ appendChatMessage(padID, text, authorID, time), creates a chat message for the p Example returns: -{code: 0, message:"ok", data: null +{code: 0, message:"ok", data: null} {code: 1, message:"padID does not exist", data: null} */ exports.appendChatMessage = function(padID, text, authorID, time, callback) |