Skip to content

Commit 893a34b

Browse files
author
Ruan YiFeng
authored
Merge pull request ruanyf#639 from xianshenglu/patch-1
删除无效冗余字符
2 parents 53cf097 + 2eccfb5 commit 893a34b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/spec.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,15 @@ ES6 规格将这个标准流程,使用简写的方式表达。
127127
> Return the result of performing Strict Equality Comparison `x === y`.
128128
> 1. If `x` is `null` and `y` is `undefined`, return `true`.
129129
> 1. If `x` is `undefined` and `y` is `null`, return `true`.
130-
> 1. If `Type(x)` is Number and `Type(y)` is String,\
130+
> 1. If `Type(x)` is Number and `Type(y)` is String,
131131
> return the result of the comparison `x == ToNumber(y)`.
132-
> 1. If `Type(x)` is String and `Type(y)` is Number,\
132+
> 1. If `Type(x)` is String and `Type(y)` is Number,
133133
> return the result of the comparison `ToNumber(x) == y`.
134134
> 1. If `Type(x)` is Boolean, return the result of the comparison `ToNumber(x) == y`.
135135
> 1. If `Type(y)` is Boolean, return the result of the comparison `x == ToNumber(y)`.
136-
> 1. If `Type(x)` is either String, Number, or Symbol and `Type(y)` is Object, then\
136+
> 1. If `Type(x)` is either String, Number, or Symbol and `Type(y)` is Object, then
137137
> return the result of the comparison `x == ToPrimitive(y)`.
138-
> 1. If `Type(x)` is Object and `Type(y)` is either String, Number, or Symbol, then\
138+
> 1. If `Type(x)` is Object and `Type(y)` is either String, Number, or Symbol, then
139139
> return the result of the comparison `ToPrimitive(x) == y`.
140140
> 1. Return `false`.
141141

0 commit comments

Comments
 (0)