We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c8742b commit c5c5795Copy full SHA for c5c5795
README-zh-CN.md
@@ -2301,11 +2301,13 @@ function combine(a, b) {
2301
```
2302
**[⬆ 返回顶部](#代码整洁的-javascript)**
2303
2304
-### Avoid positional markers
+### 避免占位符
2305
They usually just add noise. Let the functions and variable names along with the
2306
proper indentation and formatting give the visual structure to your code.
2307
2308
-**Bad:**
+它们仅仅添加了干扰。 让函数和变量名称与合适的缩进和格式化为你的代码提供视觉结构。
2309
+
2310
+**不好的:**
2311
```javascript
2312
////////////////////////////////////////////////////////////////////////////////
2313
// Scope Model Instantiation
@@ -2323,7 +2325,7 @@ const actions = function() {
2323
2325
};
2324
2326
2327
-**Good**:
2328
+**好的:**
2329
2330
$scope.model = {
2331
menu: 'foo',
0 commit comments