diff --git a/doc/img/architecture.png b/doc/img/architecture.png index 71f8ec9b..faf4ea0b 100644 Binary files a/doc/img/architecture.png and b/doc/img/architecture.png differ diff --git a/js/extensions/partialRendering.js b/js/extensions/partialRendering.js index afd81538..e73b6ec0 100644 --- a/js/extensions/partialRendering.js +++ b/js/extensions/partialRendering.js @@ -31,7 +31,7 @@ define([ return; } - // Find modified sections starting from top + // Find modified section starting from top var leftIndex = sectionList.length; _.some(sectionList, function(section, index) { if(index >= newSectionList.length || section.text != newSectionList[index].text) { @@ -40,7 +40,7 @@ define([ } }); - // Find modified sections starting from bottom + // Find modified section starting from bottom var rightIndex = -sectionList.length; _.some(sectionList.slice().reverse(), function(section, index) { if(index >= newSectionList.length || section.text != newSectionList[newSectionList.length - index - 1].text) {