From 46f547499de0683257c48545382792a418c28fe6 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Fri, 19 Apr 2019 18:04:34 +0100 Subject: [PATCH] docs: remove enumeration of one in Ivy opt-in (#29955) PR Close #29955 --- aio/content/guide/ivy.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/aio/content/guide/ivy.md b/aio/content/guide/ivy.md index 0530fb0e12..ba30f4ce4c 100644 --- a/aio/content/guide/ivy.md +++ b/aio/content/guide/ivy.md @@ -17,9 +17,7 @@ The new project is automatically configured for Ivy. {@a updating} ## Updating an existing project to use Ivy -You can update an existing project to use Ivy by making the following configuration changes. - -- Add the `enableIvy` option in the `angularCompilerOptions` in your project's `tsconfig.app.json`. +To update an existing project to use Ivy, set the `enableIvy` option in the `angularCompilerOptions` in your project's `tsconfig.app.json`. ```json { "compilerOptions": { ... }, @@ -29,7 +27,4 @@ You can update an existing project to use Ivy by making the following configurat } ``` -## Switching back to the current compiler - -To stop using the Ivy compiler you need to undo the steps taken when [updating to use Ivy](#updating). -- Set `enableIvy` to `false` in `tsconfig.app.json`, or remove it completely. \ No newline at end of file +To stop using the Ivy compiler, set `enableIvy` to `false` in `tsconfig.app.json`, or remove it completely.