@angular/language-service 5.2.7 → 5.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/language-service",
3
- "version": "5.2.7",
3
+ "version": "5.2.11",
4
4
  "description": "Angular - language services",
5
5
  "main": "./bundles/language-service.umd.js",
6
6
  "module": "./esm5/language-service.js",
package/src/types.d.ts CHANGED
@@ -23,7 +23,7 @@ export interface TemplateSource {
23
23
  readonly source: string;
24
24
  /**
25
25
  * The version of the source. As files are modified the version should change. That is, if the
26
- * `LanguageService` requesting template infomration for a source file and that file has changed
26
+ * `LanguageService` requesting template information for a source file and that file has changed
27
27
  * since the last time the host was asked for the file then this version string should be
28
28
  * different. No assumptions are made about the format of this string.
29
29
  *
@@ -274,7 +274,7 @@ export interface HoverTextSection {
274
274
  readonly language?: string;
275
275
  }
276
276
  /**
277
- * Hover infomration for a symbol at the hover location.
277
+ * Hover information for a symbol at the hover location.
278
278
  */
279
279
  export interface Hover {
280
280
  /**