aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Vogelsgesang <avogelsgesang@tableau.com>2022-08-07 11:02:28 -0700
committerAdrian Vogelsgesang <avogelsgesang@tableau.com>2022-08-07 11:14:43 -0700
commitfc40804a5a1d30d336576956d2a84600872092a1 (patch)
tree20ab17020d3c1408a9f5792e7dc49593f319d7bf
parent5b14c7aee82e67c31e7badae2f5323355cf5dd6d (diff)
[libc++][NFC] Fix `the the` in comment in `__format/buffer.h`
I made this commit primarily to test my commit access to the LLVM repo Differential Revision: https://reviews.llvm.org/D131365
-rw-r--r--libcxx/include/__format/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__format/buffer.h b/libcxx/include/__format/buffer.h
index d9b08064dfb3..1837ad06ba18 100644
--- a/libcxx/include/__format/buffer.h
+++ b/libcxx/include/__format/buffer.h
@@ -302,7 +302,7 @@ protected:
///
/// This version is used when \c __enable_direct_output<_OutIt, _CharT> == true.
///
-/// This class limits the size available the the direct writer so it will not
+/// This class limits the size available to the direct writer so it will not
/// exceed the maximum number of code units.
template <class _OutIt, __formatter::__char_type _CharT>
requires(output_iterator<_OutIt, const _CharT&>)