Browse Source

Missed a spot in the comments.

Ian Rose 8 years ago
parent
commit
cf75fb4791
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/coreutils/src/modeldb.ts

+ 2 - 2
packages/coreutils/src/modeldb.ts

@@ -168,7 +168,7 @@ interface IModelDB extends IDisposable {
 
   /**
    * A map of the currently active collaborators
-   * for the handler, including the local user.
+   * for the database, including the local user.
    */
   readonly collaborators?: ICollaboratorMap;
 
@@ -282,7 +282,7 @@ interface IModelDBFactory {
    * Create an IModelDB for use with a document or other
    * model.
    *
-   * @param path: a path that identifies the location of the realtime
+   * @param path: a path that identifies the location of the
    *   store in the backend.
    */
   createModelDB(path: string): IModelDB;