docs: unlink async keyword in APF guide (#44060)

Currently, `async` keywords in the APF guide incorrectly links to https://angular.io/api/common/AsyncPipe

PR Close #44060
This commit is contained in:
Alan Agius 2021-11-04 15:10:36 +01:00 committed by Andrew Scott
parent f12f6de3c6
commit df2e862cae

View file

@ -103,7 +103,7 @@ Tooling that is aware of these keys may preferentially select a desirable code f
* `"node"` selects flattened ES2015 code when the package is loaded in Node.
This format is used due to the requirements of `zone.js`, which does not support native `async`/`await` ES2017 syntax. Therefore, Node is instructed to use ES2015 code, where `async`/`await` structures have been downleveled into Promises.
This format is used due to the requirements of `zone.js`, which does not support native <code class="no-auto-link">async</code>/`await` ES2017 syntax. Therefore, Node is instructed to use ES2015 code, where <code class="no-auto-link">async</code>/`await` structures have been downleveled into Promises.
* `"default"` selects flattened ES2020 code for all other consumers.