diff --git a/AK/Variant.h b/AK/Variant.h index 59483fc1768..bc0610510b7 100644 --- a/AK/Variant.h +++ b/AK/Variant.h @@ -190,7 +190,7 @@ struct InheritFromPacks, Ps...> using InheritFromUniqueEntries, Ps...>::InheritFromUniqueEntries...; }; -// Just a nice wrapper around InheritFromPacks, which will wrap any parameter packs in ParameterPack (unless it alread is one). +// Just a nice wrapper around InheritFromPacks, which will wrap any parameter packs in ParameterPack (unless it already is one). template using MergeAndDeduplicatePacks = InheritFromPacks, Conditional, Ps, ParameterPack>...>; diff --git a/Base/usr/share/man/man1/rev.md b/Base/usr/share/man/man1/rev.md index c172a54c11b..d2aed40419e 100644 --- a/Base/usr/share/man/man1/rev.md +++ b/Base/usr/share/man/man1/rev.md @@ -11,7 +11,7 @@ $ rev [files...] ## Description `rev` reads the specified files line by line, and prints them to standard -output with each line being reversed characterwise. If no files are specifed, +output with each line being reversed characterwise. If no files are specified, then `rev` will read from standard input. ## Examples diff --git a/Documentation/CLionConfiguration.md b/Documentation/CLionConfiguration.md index 60c76039c0b..a9c049712af 100644 --- a/Documentation/CLionConfiguration.md +++ b/Documentation/CLionConfiguration.md @@ -12,7 +12,7 @@ and set the following fields: (Assuming you use `Ninja` as the build system and ## Excluding Build Artifacts Source files are copied to the `Build` directory during the build, if you do not exclude them from CLion indexing they will show up -in search results. This is often confusing, unintuitive, and can result in your loosing changes you have made to files. To exclude +in search results. This is often confusing, unintuitive, and can result in you losing changes you have made to files. To exclude these files navigate to the `Project` tool window, right-click the `Build` folder and select `Mark Directory as | Excluded`. If you want exclude Toolchain files as well, follow the same procedure with the following paths: - `Toolchain/Local` diff --git a/Documentation/RunningTests.md b/Documentation/RunningTests.md index d922d6dfe4b..d282f43365b 100644 --- a/Documentation/RunningTests.md +++ b/Documentation/RunningTests.md @@ -34,7 +34,7 @@ export SERENITY_SOURCE_DIR=${PWD}/.. ninja && ninja test ``` -To see the stdout/stderr output of failing tests, the reccommended way is to set the environment variable [`CTEST_OUTPUT_ON_FAILURE`](https://cmake.org/cmake/help/latest/manual/ctest.1.html#options) to 1. +To see the stdout/stderr output of failing tests, the recommended way is to set the environment variable [`CTEST_OUTPUT_ON_FAILURE`](https://cmake.org/cmake/help/latest/manual/ctest.1.html#options) to 1. ```sh CTEST_OUTPUT_ON_FAILURE=1 ninja test diff --git a/Kernel/Graphics/GraphicsManagement.cpp b/Kernel/Graphics/GraphicsManagement.cpp index c056cfd1647..5b4c36676e6 100644 --- a/Kernel/Graphics/GraphicsManagement.cpp +++ b/Kernel/Graphics/GraphicsManagement.cpp @@ -97,13 +97,13 @@ UNMAP_AFTER_INIT bool GraphicsManagement::initialize() * 2. The bootloader specified settings of a pre-set framebuffer, and the * kernel does not have a native driver for a detected display adapter, * therefore the kernel will use the pre-set framebuffer. Modesetting is not - * availabe in this situation. + * available in this situation. * 3. The bootloader didn't specify settings of a pre-set framebuffer, and * the kernel does not have a native driver for a detected display adapter, * therefore the kernel will try to initialize a VGA text mode console. * In that situation, the kernel will assume that VGA text mode was already * initialized, but will still try to modeset it. No switching to graphical - * enviroment is allowed in this case. + * environment is allowed in this case. * * By default, the kernel assumes that no framebuffer was created until it * was proven that there's an existing framebuffer or we can modeset the diff --git a/Userland/DevTools/UserspaceEmulator/SoftCPU.cpp b/Userland/DevTools/UserspaceEmulator/SoftCPU.cpp index 69208e9e201..c4d0c0ae0e3 100644 --- a/Userland/DevTools/UserspaceEmulator/SoftCPU.cpp +++ b/Userland/DevTools/UserspaceEmulator/SoftCPU.cpp @@ -1853,8 +1853,8 @@ void SoftCPU::FLD_RM80(const X86::Instruction& insn) VERIFY(!insn.modrm().is_register()); // long doubles can be up to 128 bits wide in memory for reasons (alignment) and only uses 80 bits of precision - // gcc uses 12 byte in 32 bit and 16 byte in 64 bit mode - // so in the 32 bit case we read a bit to much, but that shouldnt be that bad + // GCC uses 12 bytes in 32 bit and 16 bytes in 64 bit mode + // so in the 32 bit case we read a bit to much, but that shouldn't be an issue. auto new_f80 = insn.modrm().read128(*this, insn); // FIXME: Respect shadow values fpu_push(*(long double*)new_f80.value().bytes()); diff --git a/Userland/Libraries/LibCrypto/ASN1/ASN1.cpp b/Userland/Libraries/LibCrypto/ASN1/ASN1.cpp index 13712aacce5..c7a2c651416 100644 --- a/Userland/Libraries/LibCrypto/ASN1/ASN1.cpp +++ b/Userland/Libraries/LibCrypto/ASN1/ASN1.cpp @@ -127,7 +127,7 @@ Optional parse_generalized_time(const StringView& time) auto month = lexer.consume(2).to_uint(); auto day = lexer.consume(2).to_uint(); auto hour = lexer.consume(2).to_uint(); - Optional minute, seconds, miliseconds, offset_hours, offset_minutes; + Optional minute, seconds, milliseconds, offset_hours, offset_minutes; [[maybe_unused]] bool negative_offset = false; if (!lexer.is_eof()) { if (lexer.consume_specific('Z')) @@ -152,8 +152,8 @@ Optional parse_generalized_time(const StringView& time) } if (lexer.consume_specific('.')) { - miliseconds = lexer.consume(3).to_uint(); - if (!miliseconds.has_value()) { + milliseconds = lexer.consume(3).to_uint(); + if (!milliseconds.has_value()) { return {}; } if (lexer.consume_specific('Z')) @@ -182,7 +182,7 @@ done_parsing:; if (offset_hours.has_value() || offset_minutes.has_value()) dbgln("FIXME: Implement GeneralizedTime with offset!"); - // Unceremonially drop the miliseconds on the floor. + // Unceremonially drop the milliseconds on the floor. return Core::DateTime::create(year.value(), month.value(), day.value(), hour.value(), minute.value_or(0), seconds.value_or(0)); } diff --git a/Userland/Libraries/LibGL/SoftwareGLContext.cpp b/Userland/Libraries/LibGL/SoftwareGLContext.cpp index 365d5df6dda..8e65c9f70e4 100644 --- a/Userland/Libraries/LibGL/SoftwareGLContext.cpp +++ b/Userland/Libraries/LibGL/SoftwareGLContext.cpp @@ -127,7 +127,7 @@ void SoftwareGLContext::gl_end() // 2. Transform all of the vertices from eye space into clip space by multiplying by the projection matrix // 3. If culling is enabled, we cull the desired faces (https://learnopengl.com/Advanced-OpenGL/Face-culling) // 4. Each element of the vertex is then divided by w to bring the positions into NDC (Normalized Device Coordinates) - // 5. The vertices are sorted (for the rasteriser, how are we doing this? 3Dfx did this top to bottom in terms of vertex y co-ordinates) + // 5. The vertices are sorted (for the rasteriser, how are we doing this? 3Dfx did this top to bottom in terms of vertex y coordinates) // 6. The vertices are then sent off to the rasteriser and drawn to the screen float scr_width = m_frontbuffer->width(); diff --git a/Userland/Libraries/LibGfx/TextDirection.cpp b/Userland/Libraries/LibGfx/TextDirection.cpp index c29e1baf616..0f546fe1a5c 100644 --- a/Userland/Libraries/LibGfx/TextDirection.cpp +++ b/Userland/Libraries/LibGfx/TextDirection.cpp @@ -9,7 +9,7 @@ namespace Gfx { -// FIXME: These should be parsed from the official UnicodeData.txt that specifies the class for each character (this function doesnt take into account a large amount of characters) +// FIXME: These should be parsed from the official UnicodeData.txt that specifies the class for each character (this function doesn't take into account a large amount of characters) static consteval Array generate_char_bidi_class_lookup_table() { Array lookup_table {}; @@ -22,7 +22,7 @@ static consteval Array generate_char_bidi_class_loo if ((ch >= 0x30 && ch <= 0x39) || (ch >= 0x660 && ch <= 0x669) || (ch >= 0x10D30 && ch <= 0x10E7E)) char_class = BidirectionalClass::WEAK_NUMBERS; // Numerals if ((ch >= 0x23 && ch <= 0x25) || (ch >= 0x2B && ch <= 0x2F) || (ch == 0x3A)) - char_class = BidirectionalClass::WEAK_SEPARATORS; // Seperators + char_class = BidirectionalClass::WEAK_SEPARATORS; // Separators if ((ch >= 0x9 && ch <= 0xD) || (ch >= 0x1C && ch <= 0x22) || (ch >= 0x26 && ch <= 0x2A) || (ch >= 0x3B && ch <= 0x40) || (ch >= 0x5B && ch <= 0x60) || (ch >= 0x7B && ch <= 0x7E)) char_class = BidirectionalClass::NEUTRAL; lookup_table[ch] = char_class; diff --git a/Userland/Libraries/LibGfx/TextDirection.h b/Userland/Libraries/LibGfx/TextDirection.h index 87075a832e4..c128d38d03f 100644 --- a/Userland/Libraries/LibGfx/TextDirection.h +++ b/Userland/Libraries/LibGfx/TextDirection.h @@ -28,7 +28,7 @@ constexpr BidirectionalClass get_char_bidi_class(u32 ch) return char_bidi_class_lookup_table[ch]; } -// FIXME: These should be parsed from the official BidiMirroring.txt that specifies the mirroring character for each character (this function doesnt take into account a large amount of characters) +// FIXME: These should be parsed from the official BidiMirroring.txt that specifies the mirroring character for each character (this function doesn't take into account a large amount of characters) constexpr u32 get_mirror_char(u32 ch) { if (ch == 0x28) diff --git a/Userland/Libraries/LibPthread/pthread.cpp b/Userland/Libraries/LibPthread/pthread.cpp index b9f311d8e09..90ec6294cf2 100644 --- a/Userland/Libraries/LibPthread/pthread.cpp +++ b/Userland/Libraries/LibPthread/pthread.cpp @@ -612,7 +612,7 @@ int pthread_spin_lock(pthread_spinlock_t* lock) int pthread_spin_trylock(pthread_spinlock_t* lock) { // We expect the current value to be unlocked, as the specification - // states that trylock should lock ony if it is not held by ANY thread. + // states that trylock should lock only if it is not held by ANY thread. auto current = spinlock_unlock_sentinel; auto desired = gettid(); diff --git a/Userland/Libraries/LibSQL/Parser.cpp b/Userland/Libraries/LibSQL/Parser.cpp index cbb990e66de..3e71e1e83f8 100644 --- a/Userland/Libraries/LibSQL/Parser.cpp +++ b/Userland/Libraries/LibSQL/Parser.cpp @@ -319,7 +319,7 @@ NonnullRefPtr