From cdff1f61f02740613aa5311372576793de8df8d0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 19 May 2016 01:26:04 +0300 Subject: [PATCH] lib: revert my bogus comment fix See https://github.com/NixOS/nixpkgs/commit/5445e521b6524587489c6968cc27347977b9b7b8#commitcomment-17531945 --- lib/strings.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/strings.nix b/lib/strings.nix index cff7e6bc3f1..9e9bdd6e153 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -346,7 +346,7 @@ rec { */ versionOlder = v1: v2: builtins.compareVersions v2 v1 == 1; - /* Return true if string v1 denotes a version equal to or newer than v2. + /* Return true iff string v1 denotes a version equal to or newer than v2. Example: versionAtLeast "1.1" "1.0"