fix: 文字细修:复本 ==> 副本

This commit is contained in:
Zhicheng WANG 2019-02-22 02:49:52 +08:00
parent a820a61928
commit 71005dbb37
3 changed files with 4 additions and 4 deletions

View File

@ -1080,7 +1080,7 @@ it can't prevent you from modifying a property of a request body object.
If you must mutate the request body, copy it first, change the copy,
`clone()` the request, and set the clone's body with the new body, as in the following example.
如果你必须修改请求体,那么就要先复制它,然后修改这个复本,`clone()` 这个请求,然后把这个请求体的复本作为新的请求体,例子如下:
如果你必须修改请求体,那么就要先复制它,然后修改这个副本,`clone()` 这个请求,然后把这个请求体的副本作为新的请求体,例子如下:
<code-example
path="http/src/app/http-interceptors/trim-name-interceptor.ts"

View File

@ -18,7 +18,7 @@ This guide takes less than 30 minutes to complete.
At the end of this guide&mdash;as part of final code review&mdash;there is a link to download a copy of the final application code. (If you don't execute the commands in this guide, you can still download the final application code.)
本指南只要不到 30 分钟即可完成。本指南末尾的最终代码回顾部分提供了一个链接,你可以去下载最终应用代码的一份本。(就算你没有执行本章的这些命令,也仍然可以直接下载这份最终版的应用代码。)
本指南只要不到 30 分钟即可完成。本指南末尾的最终代码回顾部分提供了一个链接,你可以去下载最终应用代码的一份本。(就算你没有执行本章的这些命令,也仍然可以直接下载这份最终版的应用代码。)
{@a devenv}
{@a prerequisites}

View File

@ -50,7 +50,7 @@ The version number is incremented based on the level of change included in the r
* Minor releases contain new smaller features. Minor releases are fully backward-compatible; no developer assistance is expected during update, but you can optionally modify your apps and libraries to begin using new APIs, features, and capabilities that were added in the release. We update peer dependencies in minor versions by expanding the supported versions, but we do not require projects to update these dependencies.
小版本包含新的小型特性。小版本是完全向后兼容的,在升级期间,不需要开发人员提供协助,但是你可以(可选的)修改你的应用和库,来使用本次发布中新增的 API、特性和能力。我们会扩展平级依赖peer dependency中的小版本号范围来更新平级依赖,但并不需要你的项目也更新那些依赖。
小版本包含新的小型特性。小版本是完全向后兼容的,在升级期间,不需要开发人员提供协助,但是你可以(可选的)修改你的应用和库,来使用本次发布中新增的 API、特性和能力。我们会扩展库同级peer dependency中的小版本号范围来更新库同级,但并不需要你的项目也更新那些依赖。
* Patch releases are low risk, bug fix releases. No developer assistance is expected during update.
@ -212,7 +212,7 @@ To help ensure that you have sufficient time and a clear path to update, this is
* We only make peer dependency updates that require changes to your apps in a major release. In minor releases, we update peer dependencies by expanding the supported versions, but we do not require projects to update these dependencies until a future major version.
我们只会在主版本中更新你的应用所需的平级依赖。在小版本中,我们通过扩展支持的版本来升级平级依赖。但是我们不需要项目也更新这些依赖 —— 直到下一个主版本为止。
我们只会在主版本中更新你的应用所需的库同级。在小版本中,我们通过扩展支持的版本来升级库同级。但是我们不需要项目也更新这些依赖 —— 直到下一个主版本为止。
{@a public-api}