mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 00:16:15 -04:00
docs: fixed typos
This commit is contained in:
parent
65dec5bd2c
commit
ea202e41f6
24 changed files with 37 additions and 37 deletions
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
/**
|
||||
* The DB Module provides a database initalized with the settings
|
||||
* The DB Module provides a database initialized with the settings
|
||||
* provided by the settings module
|
||||
*/
|
||||
|
||||
|
@ -36,7 +36,7 @@ const db =
|
|||
exports.db = null;
|
||||
|
||||
/**
|
||||
* Initalizes the database with the settings provided by the settings module
|
||||
* Initializes the database with the settings provided by the settings module
|
||||
* @param {Function} callback
|
||||
*/
|
||||
exports.init = async () => await new Promise((resolve, reject) => {
|
||||
|
|
|
@ -139,7 +139,7 @@ exports.getPad = async (id, text) => {
|
|||
// try to load pad
|
||||
pad = new Pad(id);
|
||||
|
||||
// initalize the pad
|
||||
// initialize the pad
|
||||
await pad.init(text);
|
||||
globalPads.set(id, pad);
|
||||
padList.addPad(id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue