Replace Chinese quotes with English quotes

Replace chinese double quotes with English double quotes

Change-Id: Iec7305c4d0a879cc69bde90771741b527bfe5232
This commit is contained in:
zhu.boxiang 2018-09-11 14:18:03 +08:00
parent b8524fb4c0
commit 3ba15b4524
2 changed files with 3 additions and 3 deletions

View File

@ -213,7 +213,7 @@ Required
fragment and then append the fragment to the DOM in one pass instead of doing
multiple smaller DOM updates.
* Use “strict”, enclosing each JavaScript file inside a self-executing
* Use "strict", enclosing each JavaScript file inside a self-executing
function. The self-executing function keeps the strict scoped to the file,
so its variables and methods are not exposed to other JavaScript files in
the product.
@ -332,7 +332,7 @@ Recommended
* Put a comment at the top of every file explaining what the purpose of this
file is when the naming is not obvious. This guideline also applies to
methods and variables.
* Source-code formatting (or “beautification”) is recommended but should be
* Source-code formatting (or "beautification") is recommended but should be
used with caution. Keep in mind that if you reformat an entire file that was
not previously formatted the same way, it will mess up the diff during the
code review. It is best to use a formatter when you are working on a new file

View File

@ -13,7 +13,7 @@ A developer building a package is comparable to an engineer building a car
with only a manual and very few tools. If the engineer needs a specific tool
to build the car, he must create the tool, too.
As a developer, if you are going to add a library named “foo”, the package
As a developer, if you are going to add a library named "foo", the package
must adhere to the following standards:
- Be a free package created with free software.