aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdlib
diff options
context:
space:
mode:
authorAustin Jiang <austinjiangboyu@gmail.com>2026-01-13 11:52:46 -0500
committerGitHub <noreply@github.com>2026-01-13 11:52:46 -0500
commite6cdfb75ac88719c3bb6f3cab17ec0c8a781a34f (patch)
tree97dc5e9cec4fddf8c769336fecd8277c8066fb22 /libc/src/stdlib
parent2e0e4f6cb3a336b695b18eaec62a844b535b6dbd (diff)
downloadllvm-e6cdfb75ac88719c3bb6f3cab17ec0c8a781a34f.tar.gz
llvm-e6cdfb75ac88719c3bb6f3cab17ec0c8a781a34f.tar.bz2
llvm-e6cdfb75ac88719c3bb6f3cab17ec0c8a781a34f.zip
Fix typos and spelling errors across codebase (#156270)
Corrected various spelling mistakes such as 'occurred', 'receiver', 'initialized', 'length', and others in comments, variable names, function names, and documentation throughout the project. These changes improve code readability and maintain consistency in naming and documentation. Co-authored-by: Louis Dionne <ldionne.2@gmail.com>
Diffstat (limited to 'libc/src/stdlib')
-rw-r--r--libc/src/stdlib/strfroml.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/src/stdlib/strfroml.cpp b/libc/src/stdlib/strfroml.cpp
index 4be21677f7f1..8dbd8d7fc4f2 100644
--- a/libc/src/stdlib/strfroml.cpp
+++ b/libc/src/stdlib/strfroml.cpp
@@ -24,7 +24,7 @@ LLVM_LIBC_FUNCTION(int, strfroml,
internal::parse_format_string(format, fp);
// To ensure that the conversion function actually uses long double,
- // the length modifier has to be set to LenghtModifier::L
+ // the length modifier has to be set to LengthModifier::L
section.length_modifier = printf_core::LengthModifier::L;
printf_core::DropOverflowBuffer wb(s, (n > 0 ? n - 1 : 0));