From fbdaa58162ee4189f441b75170af89215465d189 Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Mon, 21 Mar 2022 16:52:40 +0100 Subject: 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. --- libphobos/src/std/uni/package.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libphobos/src/std/uni') 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. -- cgit v1.1