We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d89052f commit 08f079dCopy full SHA for 08f079d
src/FSharpPlus/Extensions/String.fs
@@ -63,13 +63,13 @@ module String =
63
64
Seq.contains char source
65
66
- /// Converts to uppercase -- nullsafe function wrapper for String.ToUpperInvariant method.
+ /// Converts to uppercase -- function wrapper for String.ToUpperInvariant method.
67
let toUpper (source: string) =
68
raiseIfNull (nameof source) source
69
70
if isNull source then source else source.ToUpperInvariant ()
71
72
- /// Converts to lowercase -- nullsafe function wrapper for String.ToLowerInvariant method.
+ /// Converts to lowercase -- function wrapper for String.ToLowerInvariant method.
73
let toLower (source: string) =
74
75
0 commit comments