soumaeda пре 2 година
родитељ
комит
93c4a2018b
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      apps/app/src/components/PageEditor/MarkdownDrawioUtil.js

+ 2 - 1
apps/app/src/components/PageEditor/MarkdownDrawioUtil.js

@@ -20,7 +20,7 @@ class MarkdownDrawioUtil {
     return editor.state.doc;
     return editor.state.doc;
   }
   }
 
 
-  // get first line numbet
+  // get first line number
   firstLine() {
   firstLine() {
     return 1;
     return 1;
   }
   }
@@ -30,6 +30,7 @@ class MarkdownDrawioUtil {
     return this.doc(editor).lines;
     return this.doc(editor).lines;
   }
   }
 
 
+  // get line information
   getLine(editor, lineNum) {
   getLine(editor, lineNum) {
     return this.doc(editor).line(lineNum);
     return this.doc(editor).line(lineNum);
   }
   }