aboutsummaryrefslogtreecommitdiff
path: root/libcxx
diff options
context:
space:
mode:
authorArthur O'Dwyer <arthur.j.odwyer@gmail.com>2020-12-01 20:02:46 -0500
committerArthur O'Dwyer <arthur.j.odwyer@gmail.com>2020-12-01 22:13:40 -0500
commite181a6aeddc26ef0512b2dba94db6360ba32f2ff (patch)
treef397c6c21ce4e454efcb6f542c58ee2995a656d3 /libcxx
parentd586f92c9456a972ee475a021525c0522b89587b (diff)
downloadllvm-project-e181a6aeddc26ef0512b2dba94db6360ba32f2ff.tar.gz
s/instantate/instantiate/ throughout. NFCI.
The static_assert in "libcxx/include/memory" was the main offender here, but then I figured I might as well `git grep -i instantat` and fix all the instances I found. One was in user-facing HTML documentation; the rest were in comments or tests.
Diffstat (limited to 'libcxx')
-rw-r--r--libcxx/include/memory2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/memory b/libcxx/include/memory
index 9cdac6afc5ea..402a735419c8 100644
--- a/libcxx/include/memory
+++ b/libcxx/include/memory
@@ -2028,7 +2028,7 @@ class __compressed_pair : private __compressed_pair_elem<_T1, 0>,
// (The exception is std::function where it is possible that the function
// object and the allocator have the same type).
static_assert((!is_same<_T1, _T2>::value),
- "__compressed_pair cannot be instantated when T1 and T2 are the same type; "
+ "__compressed_pair cannot be instantiated when T1 and T2 are the same type; "
"The current implementation is NOT ABI-compatible with the previous "
"implementation for this configuration");