[CodeMirror] removed is actually a list of string.

as is test on the same object.
This commit is contained in:
Matthias Bussonnier
2015-07-25 18:15:45 -07:00
parent f6c8ca4719
commit 7518bed77b
+1 -1
View File
@@ -600,7 +600,7 @@ declare module CodeMirror {
/** Array of strings representing the text that replaced the changed range (split by line). */
text: string[];
/** Text that used to be between from and to, which is overwritten by this change. */
removed: string;
removed: string[];
/** String representing the origin of the change event and wether it can be merged with history */
origin: string;
}