Skip to content

Commit 2a32376

Browse files
committed
refactor: fix typo
1 parent c75318b commit 2a32376

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/angular/cli/models/json-schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88
import { JsonObject, JsonValue, parseJson } from '@angular-devkit/core';
9-
import * as jsonSchemaTravese from 'json-schema-traverse';
9+
import * as jsonSchemaTraverse from 'json-schema-traverse';
1010
import { Option, OptionSmartDefault } from './command';
1111

1212
export async function convertSchemaToOptions(schema: string): Promise<Option[]> {
@@ -86,7 +86,7 @@ function getOptions(schemaText: string, onlyRootProperties = true): Promise<Opti
8686

8787
const callbacks = { post: postCallback };
8888

89-
jsonSchemaTravese(<object> fullSchema, traverseOptions, callbacks);
89+
jsonSchemaTraverse(<object> fullSchema, traverseOptions, callbacks);
9090
});
9191
}
9292

0 commit comments

Comments
 (0)