소스 검색

make it more readable when printing a bunch of class names in a row

Reddo 5 년 전
부모
커밋
de9dfb0a1f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Elements/Classes/Say.ts

+ 1 - 1
app/Elements/Classes/Say.ts

@@ -232,7 +232,7 @@ class Say {
             } else if (typeof seq == "function") {
                 // not a function, but a class
                 if (seq.prototype != undefined) {
-                    this.currentParagraph.push(document.createTextNode(seq.name));
+                    this.currentParagraph.push(document.createTextNode(" " + seq.name + " "));
                 } else {
                     let fObj = (<(s: Say) => any>seq)(this);
                     if (Array.isArray(fObj)) {