Skip to content

Commit 86e769b

Browse files
committed
docs: updated readme
1 parent 434cbd8 commit 86e769b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ greater than or equal to 4.2.3.
128128
The basic comparisons are:
129129

130130
* `=`: equal (aliased to no operator)
131+
* `==`: strictly equal
131132
* `!=`: not equal
132133
* `>`: greater than
133134
* `<`: less than
@@ -181,6 +182,7 @@ for all comparison operators. When used on the `=` operator it falls
181182
back to the patch level comparison (see tilde below). For example,
182183

183184
* `1.2.x` is equivalent to `>= 1.2.0, < 1.3.0`
185+
* `==1.2.x` is equivalent to `== 1.2.0`
184186
* `>= 1.2.x` is equivalent to `>= 1.2.0`
185187
* `<= 2.x` is equivalent to `< 3`
186188
* `*` is equivalent to `>= 0.0.0`

0 commit comments

Comments
 (0)