@@ -27,7 +27,7 @@ export {
2727 * The information `LanguageService` needs from the `LanguageServiceHost` to describe the content of
2828 * a template and the language context the template is in.
2929 *
30- * A host interface; see `LanguageSeriviceHost `.
30+ * A host interface; see `LanguageServiceHost `.
3131 *
3232 * @publicApi
3333 */
@@ -71,7 +71,7 @@ export interface TemplateSource {
7171/**
7272 * A sequence of template sources.
7373 *
74- * A host type; see `LanguageSeriviceHost `.
74+ * A host type; see `LanguageServiceHost `.
7575 *
7676 * @publicApi
7777 */
@@ -102,12 +102,12 @@ export interface DeclarationError {
102102 * Information about the component declarations.
103103 *
104104 * A file might contain a declaration without a template because the file contains only
105- * templateUrl references. However, the compoennt declaration might contain errors that
105+ * templateUrl references. However, the component declaration might contain errors that
106106 * need to be reported such as the template string is missing or the component is not
107107 * declared in a module. These error should be reported on the declaration, not the
108108 * template.
109109 *
110- * A host type; see `LanguageSeriviceHost `.
110+ * A host type; see `LanguageServiceHost `.
111111 *
112112 * @publicApi
113113 */
@@ -137,16 +137,15 @@ export interface Declaration {
137137/**
138138 * A sequence of declarations.
139139 *
140- * A host type; see `LanguageSeriviceHost `.
140+ * A host type; see `LanguageServiceHost `.
141141 *
142142 * @publicApi
143143 */
144144export type Declarations = Declaration [ ] ;
145145
146146/**
147147 * The host for a `LanguageService`. This provides all the `LanguageService` requires to respond
148- * to
149- * the `LanguageService` requests.
148+ * to the `LanguageService` requests.
150149 *
151150 * This interface describes the requirements of the `LanguageService` on its host.
152151 *
@@ -186,8 +185,7 @@ export interface LanguageServiceHost {
186185
187186 /**
188187 * Return the template source information for all templates in `fileName` or for `fileName` if
189- * it
190- * is a template file.
188+ * it is a template file.
191189 */
192190 getTemplates ( fileName : string ) : TemplateSources ;
193191
@@ -216,7 +214,7 @@ export interface LanguageServiceHost {
216214 */
217215export interface Completion {
218216 /**
219- * The kind of comletion .
217+ * The kind of completion .
220218 */
221219 kind : DeclarationKind ;
222220
@@ -353,7 +351,7 @@ export interface Hover {
353351 * beginning of the file reference by `fileName`.
354352 *
355353 * This interface and all interfaces and types marked as `LanguageService` types, describe a
356- * particlar implementation of the Angular language service and is not intented to be
354+ * particular implementation of the Angular language service and is not intended to be
357355 * implemented. Adding members to the interface will not be considered a breaking change as
358356 * defined by SemVer.
359357 *
0 commit comments