fix documentation typo in lib/strings.nix (#17684)

This commit is contained in:
Данило Глинський (Danylo Hlynskyi) 2016-08-12 08:30:11 +00:00 committed by Robin Gloster
parent a00a2466b6
commit 0a0b7eb5f2
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ rec {
/* Converts an ASCII string to upper-case. /* Converts an ASCII string to upper-case.
Example: Example:
toLower "home" toUpper "home"
=> "HOME" => "HOME"
*/ */
toUpper = replaceChars lowerChars upperChars; toUpper = replaceChars lowerChars upperChars;