Update based on PR feedback

This commit is contained in:
Ron Buckton
2019-08-06 10:46:17 -07:00
parent 5710f7d5ff
commit 3ff0a249d2
17 changed files with 23 additions and 23 deletions

View File

@@ -3645,7 +3645,7 @@ namespace ts {
return { value: o && o[i++], done: !o };
}
};
throw new TypeError(s ? "Object not iterable." : "Symbol.iterator is not defined.");
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
};`
};