diff --git a/lib/strings.nix b/lib/strings.nix index 112165df82a..89169411a02 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -248,7 +248,7 @@ rec { /* Converts an ASCII string to upper-case. Example: - toLower "home" + toUpper "home" => "HOME" */ toUpper = replaceChars lowerChars upperChars;