From f1320bf7a130f8e1f8856a32320624c403390d26 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 22 Jun 2012 16:04:44 +0200 Subject: [PATCH] Update docs about operators --- doc/01-basic-usage.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/01-basic-usage.md b/doc/01-basic-usage.md index e1882df68..b754ea94a 100644 --- a/doc/01-basic-usage.md +++ b/doc/01-basic-usage.md @@ -67,8 +67,9 @@ Version constraints can be specified in a few different ways. example `1.0.2`. This is not used very often, but can be useful. * **Range:** By using comparison operators you can specify ranges of valid - versions. Valid operators are `>`, `>=`, `<`, `<=`. An example range would be - `>=1.0`. You can define multiple ranges, separated by a comma: `>=1.0,<2.0`. + versions. Valid operators are `>`, `>=`, `<`, `<=`, `!=`. An example range + would be `>=1.0`. You can define multiple ranges, separated by a comma: + `>=1.0,<2.0`. * **Wildcard:** You can specify a pattern with a `*` wildcard. `1.0.*` is the equivalent of `>=1.0,<1.1-dev`.