summaryrefslogtreecommitdiffstats
path: root/lib/strings.nix
diff options
context:
space:
mode:
authorДанило Глинський (Danylo Hlynskyi) <abcz2.uprola@gmail.com>2016-08-12 08:30:11 +0000
committerRobin Gloster <mail@glob.in>2016-08-12 08:30:11 +0000
commit0a0b7eb5f255d55c5822d4f52e4d6f491452c793 (patch)
tree55d7c1c402a659eaa5a26486345323d61934fcea /lib/strings.nix
parenta00a2466b6a6bc3b05e7c830c00b7ec28a0e0064 (diff)
fix documentation typo in lib/strings.nix (#17684)
Diffstat (limited to 'lib/strings.nix')
-rw-r--r--lib/strings.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strings.nix b/lib/strings.nix
index 112165df82ab..89169411a021 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;