|
@@ -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)) {
|