From 0332fc7e66914df803b9ffae4046c960eb25663c Mon Sep 17 00:00:00 2001 From: Kenneth Geisshirt Date: Fri, 22 Sep 2017 19:39:00 +0200 Subject: [PATCH] Update realm.js Fixing old typos. --- docs/realm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/realm.js b/docs/realm.js index 179c522b..6d97936a 100644 --- a/docs/realm.js +++ b/docs/realm.js @@ -92,7 +92,7 @@ class Realm { constructor(config) {} /** - * Open a realm asynchronously with a promise. If the realm is synced, it will be fully + * Open a Realm asynchronously with a promise. If the Realm is synced, it will be fully * synchronized before it is available. * @param {Realm~Configuration} config * @returns {ProgressPromise} - a promise that will be resolved with the realm instance when it's available. @@ -100,7 +100,7 @@ class Realm { static open(config) {} /** - * Open a realm asynchronously with a callback. If the realm is synced, it will be fully + * Open a Realm asynchronously with a callback. If the Realm is synced, it will be fully * synchronized before it is available. * @param {Realm~Configuration} config * @param {callback(error, realm)} - will be called when the realm is ready.