aboutsummaryrefslogtreecommitdiff
path: root/libphobos/src/std/uni
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2022-03-21 16:52:40 +0100
committerIain Buclaw <ibuclaw@gdcproject.org>2022-03-21 19:51:50 +0100
commitfbdaa58162ee4189f441b75170af89215465d189 (patch)
tree77c5816b721cad2691bea1d228cb5ecc31568f9c /libphobos/src/std/uni
parent4a3073f04e8b7987ad7bfe1bc23bfeb1d627ee6a (diff)
downloadgcc-fbdaa58162ee4189f441b75170af89215465d189.zip
gcc-fbdaa58162ee4189f441b75170af89215465d189.tar.gz
gcc-fbdaa58162ee4189f441b75170af89215465d189.tar.bz2
d: Merge upstream dmd 2503f17e5, phobos a74fa63e6.
D front-end changes: - Import dmd mainline development. - Removed internal d_intN and d_unsN aliases to stdint types, which caused a regression on Solaris where int8_t is a char (PR104911). Phobos changes: - Import phobos mainline development. PR d/104911 gcc/d/ChangeLog: * dmd/MERGE: Merge upstream dmd 2503f17e5. * d-convert.cc (convert_expr): Replace d_uns64 with dinteger_t. * d-lang.cc: Remove dmd/root/file.h include. (d_handle_option): Update for new front-end interface. (d_parse_file): Likewise. libphobos/ChangeLog: * src/MERGE: Merge upstream phobos a74fa63e6.
Diffstat (limited to 'libphobos/src/std/uni')
-rw-r--r--libphobos/src/std/uni/package.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/libphobos/src/std/uni/package.d b/libphobos/src/std/uni/package.d
index 9780b1b..eeeda72 100644
--- a/libphobos/src/std/uni/package.d
+++ b/libphobos/src/std/uni/package.d
@@ -9824,7 +9824,7 @@ dchar toLower(dchar c)
/++
Creates a new array which is identical to `s` except that all of its
- characters are converted to lowercase (by preforming Unicode lowercase mapping).
+ characters are converted to lowercase (by performing Unicode lowercase mapping).
If none of `s` characters were affected, then `s` itself is returned if `s` is a
`string`-like type.
@@ -10028,7 +10028,7 @@ dchar toUpper(dchar c)
/++
Allocates a new array which is identical to `s` except that all of its
- characters are converted to uppercase (by preforming Unicode uppercase mapping).
+ characters are converted to uppercase (by performing Unicode uppercase mapping).
If none of `s` characters were affected, then `s` itself is returned if `s`
is a `string`-like type.