From c2ffe0b69768992b212faec2dfb743475870e51a Mon Sep 17 00:00:00 2001
From: Kevin Jahns <kevin.jahns@rwth-aachen.de>
Date: Tue, 26 Apr 2016 21:28:21 +0200
Subject: [PATCH] Release 11.0.2

---
 dist         | 2 +-
 package.json | 2 +-
 src/Utils.js | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dist b/dist
index 89a920df..b958b72f 160000
--- a/dist
+++ b/dist
@@ -1 +1 @@
-Subproject commit 89a920df683ddbeb64c2d542793f3a1aa9fe01f9
+Subproject commit b958b72f1df825af1641a2a5896f2425935465f9
diff --git a/package.json b/package.json
index 1ba70005..f4808701 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "yjs",
-  "version": "11.0.1",
+  "version": "11.0.2",
   "description": "A framework for real-time p2p shared editing on arbitrary complex data types",
   "main": "./src/y.js",
   "scripts": {
diff --git a/src/Utils.js b/src/Utils.js
index d2bbf288..4c82919d 100644
--- a/src/Utils.js
+++ b/src/Utils.js
@@ -115,8 +115,8 @@ module.exports = function (Y /* : any*/) {
         if (op.struct === 'Insert') {
           for (var i = this.waiting.length - 1; i >= 0; i--) {
             let w = this.waiting[i]
-            // TODO: do I handle split operations correctly here? Super unlikely, but yeah.. 
-            // Also: can this case happen? Can op be inserted in the middle of a larger op that is in $waiting? 
+            // TODO: do I handle split operations correctly here? Super unlikely, but yeah..
+            // Also: can this case happen? Can op be inserted in the middle of a larger op that is in $waiting?
             if (w.struct === 'Insert') {
               if (Y.utils.matchesId(w, op.left)) {
                 // include the effect of op in w
-- 
GitLab