From 1a942aa4e081da8911912d498c0b4b4cdd190646 Mon Sep 17 00:00:00 2001
From: Duane Johnson <duane.johnson@gmail.com>
Date: Sun, 12 Jul 2020 09:38:20 -0600
Subject: [PATCH] whitespace

---
 src/utils/Doc.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/utils/Doc.js b/src/utils/Doc.js
index 4a22f8ed..3e5411ac 100644
--- a/src/utils/Doc.js
+++ b/src/utils/Doc.js
@@ -171,7 +171,7 @@ export class Doc extends Observable {
 
   /**
    * Converts the entire document into a js object, recursively traversing each yjs type
-   * 
+   *
    * @return {Object<string, any>}
    */
   toJSON () {
@@ -183,7 +183,7 @@ export class Doc extends Observable {
     for (const [k, v] of this.share.entries()) {
       doc[k] = v.toJSON()
     }
-    
+
     return doc
   }