From 659fcf194fb66cddc1a5cc40f054f359411ec345 Mon Sep 17 00:00:00 2001 From: ephja Date: Mon, 5 Jun 2017 11:16:23 +0200 Subject: [PATCH] fix typo --- readme.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.markdown b/readme.markdown index 9bc6dbe..4d380c5 100644 --- a/readme.markdown +++ b/readme.markdown @@ -565,7 +565,7 @@ requires "nim >= 0.10.0", "jester > 0.1 & <= 0.5" Dependency lists support version ranges. These versions may either be a concrete version like ``0.1``, or they may contain any of the less-than (``<``), greater-than (``>``), less-than-or-equal-to (``<=``) and greater-than-or-equal-to -(``>=``) oeprators. +(``>=``) operators. Two version ranges may be combined using the ``&`` operator, for example ``> 0.2 & < 1.0``, which will install a package with the version greater than 0.2 and less than 1.0.