Skip to content

Commit

Permalink
Fix error in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreeve committed Feb 17, 2016
1 parent 189afaa commit e471e3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ A comparator set is a combination of comparators, where all comparators
must be satisfied for a comparator set to be satisfied.

A comparator is made up of an operator and a version.
An operator is one of: `==`, `>`, `>=`, `<`, or `<=`.
An operator is one of: `=`, `>`, `>=`, `<`, or `<=`.
For example, the comparator `>=1.2.3` specifies versions
greater than or equal to `1.2.3`.

An example of a range is `>=1.2.3 <1.3.0 || ==1.3.2`, which
An example of a range is `>=1.2.3 <1.3.0 || =1.3.2`, which
is satisfied by `1.2.3`, `1.2.99`, and `1.3.2`, but not `1.3.0`.

Advanced Ranges
Expand Down

0 comments on commit e471e3c

Please sign in to comment.