diff --git a/AK/HashTable.h b/AK/HashTable.h index b74b404f95..46388d80f6 100644 --- a/AK/HashTable.h +++ b/AK/HashTable.h @@ -304,9 +304,9 @@ public: return write_value(forward(value), existing_entry_behavior); } template - HashSetResult set(U&& value, HashSetExistingEntryBehavior existing_entry_behaviour = HashSetExistingEntryBehavior::Replace) + HashSetResult set(U&& value, HashSetExistingEntryBehavior existing_entry_behavior = HashSetExistingEntryBehavior::Replace) { - return MUST(try_set(forward(value), existing_entry_behaviour)); + return MUST(try_set(forward(value), existing_entry_behavior)); } template diff --git a/Kernel/Memory/MemoryManager.cpp b/Kernel/Memory/MemoryManager.cpp index 42bc2ed616..6d484c7b62 100644 --- a/Kernel/Memory/MemoryManager.cpp +++ b/Kernel/Memory/MemoryManager.cpp @@ -812,7 +812,7 @@ ErrorOr> MemoryManager::allocate_contiguous_kernel_region( ErrorOr> MemoryManager::allocate_dma_buffer_page(StringView name, Memory::Region::Access access, RefPtr& dma_buffer_page) { dma_buffer_page = TRY(allocate_physical_page()); - // Do not enable Cache for this region as physical memory transfers are performed (Most architectures have this behaviour by default) + // Do not enable Cache for this region as physical memory transfers are performed (Most architectures have this behavior by default) return allocate_kernel_region(dma_buffer_page->paddr(), PAGE_SIZE, name, access, Region::Cacheable::No); } @@ -827,7 +827,7 @@ ErrorOr> MemoryManager::allocate_dma_buffer_pages( { VERIFY(!(size % PAGE_SIZE)); dma_buffer_pages = TRY(allocate_contiguous_physical_pages(size)); - // Do not enable Cache for this region as physical memory transfers are performed (Most architectures have this behaviour by default) + // Do not enable Cache for this region as physical memory transfers are performed (Most architectures have this behavior by default) return allocate_kernel_region(dma_buffer_pages.first()->paddr(), size, name, access, Region::Cacheable::No); } diff --git a/Ports/README.md b/Ports/README.md index 705a96a68f..f1c3b2406c 100644 --- a/Ports/README.md +++ b/Ports/README.md @@ -302,7 +302,7 @@ Defaults to `$port-$version`. ### Functions The various steps of the port installation process are split into individual -Bash functions, some of which can be overridden to provide custom behaviour, +Bash functions, some of which can be overridden to provide custom behavior, like this: ```bash diff --git a/Tests/AK/TestMemoryStream.cpp b/Tests/AK/TestMemoryStream.cpp index fe93a036cd..71a1e081ee 100644 --- a/Tests/AK/TestMemoryStream.cpp +++ b/Tests/AK/TestMemoryStream.cpp @@ -72,7 +72,7 @@ TEST_CASE(allocating_memory_stream_offset_of_oob) { AllocatingMemoryStream stream; // NOTE: This test is to make sure that offset_of() doesn't read past the end of the "initialized" data. - // So we have to assume some things about the behaviour of this class: + // So we have to assume some things about the behavior of this class: // - The chunk size is 4096 bytes. // - A chunk is moved to the end when it's fully read from // - A free chunk is used as-is, no new ones are allocated if one exists. diff --git a/Userland/Libraries/LibGUI/Variant.cpp b/Userland/Libraries/LibGUI/Variant.cpp index 95fdbcb976..e9a4bcd2ec 100644 --- a/Userland/Libraries/LibGUI/Variant.cpp +++ b/Userland/Libraries/LibGUI/Variant.cpp @@ -65,12 +65,12 @@ bool Variant::operator==(Variant const& other) const return own_value == other_value; else if constexpr (IsSame) return &own_value.impl() == &other_value.impl(); - // FIXME: Figure out if this silly behaviour is actually used anywhere, then get rid of it. + // FIXME: Figure out if this silly behavior is actually used anywhere, then get rid of it. else return to_deprecated_string() == other.to_deprecated_string(); }, [&](auto const&) { - // FIXME: Figure out if this silly behaviour is actually used anywhere, then get rid of it. + // FIXME: Figure out if this silly behavior is actually used anywhere, then get rid of it. return to_deprecated_string() == other.to_deprecated_string(); }); }); @@ -91,12 +91,12 @@ bool Variant::operator<(Variant const& other) const return own_value->name() < other_value->name(); else if constexpr (requires { own_value < other_value; }) return own_value < other_value; - // FIXME: Figure out if this silly behaviour is actually used anywhere, then get rid of it. + // FIXME: Figure out if this silly behavior is actually used anywhere, then get rid of it. else return to_deprecated_string() < other.to_deprecated_string(); }, [&](auto const&) -> bool { - return to_deprecated_string() < other.to_deprecated_string(); // FIXME: Figure out if this silly behaviour is actually used anywhere, then get rid of it. + return to_deprecated_string() < other.to_deprecated_string(); // FIXME: Figure out if this silly behavior is actually used anywhere, then get rid of it. }); }); } diff --git a/Userland/Libraries/LibGfx/AntiAliasingPainter.cpp b/Userland/Libraries/LibGfx/AntiAliasingPainter.cpp index fe53c67471..b9981d49ad 100644 --- a/Userland/Libraries/LibGfx/AntiAliasingPainter.cpp +++ b/Userland/Libraries/LibGfx/AntiAliasingPainter.cpp @@ -709,7 +709,7 @@ void AntiAliasingPainter::stroke_segment_intersection(FloatPoint current_line_a, return; if ((previous_horizontal || previous_vertical) && (current_horizontal || current_vertical)) { intersection = m_transform.map(current_line_a); - // Note: int_thickness used here to match behaviour of draw_line() + // Note: int_thickness used here to match behavior of draw_line() int int_thickness = AK::ceil(thickness); return fill_rect(FloatRect(intersection, { thickness, thickness }).translated(-int_thickness / 2), color); } diff --git a/Userland/Libraries/LibJS/Bytecode/ASTCodegen.cpp b/Userland/Libraries/LibJS/Bytecode/ASTCodegen.cpp index 2c942e4b1d..32c30cd23a 100644 --- a/Userland/Libraries/LibJS/Bytecode/ASTCodegen.cpp +++ b/Userland/Libraries/LibJS/Bytecode/ASTCodegen.cpp @@ -159,7 +159,7 @@ Bytecode::CodeGenerationErrorOr ScopeNode::generate_bytecode(Bytecode::Gen }); }); - // 11. NOTE: No abnormal terminations occur after this algorithm step if the global object is an ordinary object. However, if the global object is a Proxy exotic object it may exhibit behaviours that cause abnormal terminations in some of the following steps. + // 11. NOTE: No abnormal terminations occur after this algorithm step if the global object is an ordinary object. However, if the global object is a Proxy exotic object it may exhibit behaviors that cause abnormal terminations in some of the following steps. // 12. NOTE: Annex B.3.2.2 adds additional steps at this point. // 12. Let strict be IsStrict of script. diff --git a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.with.js b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.with.js index 8751e8650d..f2c38e57ec 100644 --- a/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.with.js +++ b/Userland/Libraries/LibJS/Tests/builtins/Temporal/PlainTime/PlainTime.prototype.with.js @@ -15,7 +15,7 @@ const REJECTED_CALENDAR_TYPES_THREE_ARGUMENTS = [ const REJECTED_CALENDAR_TYPES_TWO_ARGUMENTS = [Temporal.PlainMonthDay, Temporal.PlainYearMonth]; -describe("correct behaviour", () => { +describe("correct behavior", () => { test("length is 1", () => { expect(Temporal.PlainTime.prototype.with).toHaveLength(1); }); diff --git a/Userland/Libraries/LibWeb/HTML/HTMLHyperlinkElementUtils.cpp b/Userland/Libraries/LibWeb/HTML/HTMLHyperlinkElementUtils.cpp index 6da33dd473..d1ed21f6c0 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLHyperlinkElementUtils.cpp +++ b/Userland/Libraries/LibWeb/HTML/HTMLHyperlinkElementUtils.cpp @@ -309,7 +309,7 @@ void HTMLHyperlinkElementUtils::set_pathname(DeprecatedString pathname) return; // 4. Set url's path to the empty list. - auto url = m_url; // We copy the URL here to follow other browser's behaviour of reverting the path change if the parse failed. + auto url = m_url; // We copy the URL here to follow other browser's behavior of reverting the path change if the parse failed. url->set_paths({}); // 5. Basic URL parse the given value, with url as url and path start state as state override. @@ -356,7 +356,7 @@ void HTMLHyperlinkElementUtils::set_search(DeprecatedString search) auto input = search.substring_view(search.starts_with('?')); // 2. Set url's query to the empty string. - auto url_copy = m_url; // We copy the URL here to follow other browser's behaviour of reverting the search change if the parse failed. + auto url_copy = m_url; // We copy the URL here to follow other browser's behavior of reverting the search change if the parse failed. url_copy->set_query(DeprecatedString::empty()); // 3. Basic URL parse input, with null, this element's node document's document's character encoding, url as url, and query state as state override. @@ -404,7 +404,7 @@ void HTMLHyperlinkElementUtils::set_hash(DeprecatedString hash) auto input = hash.substring_view(hash.starts_with('#')); // 2. Set url's fragment to the empty string. - auto url_copy = m_url; // We copy the URL here to follow other browser's behaviour of reverting the hash change if the parse failed. + auto url_copy = m_url; // We copy the URL here to follow other browser's behavior of reverting the hash change if the parse failed. url_copy->set_fragment(DeprecatedString::empty()); // 3. Basic URL parse input, with url as url and fragment state as state override. diff --git a/Userland/Libraries/LibWeb/URL/URL.cpp b/Userland/Libraries/LibWeb/URL/URL.cpp index 43f58442e1..b0b2eab236 100644 --- a/Userland/Libraries/LibWeb/URL/URL.cpp +++ b/Userland/Libraries/LibWeb/URL/URL.cpp @@ -335,7 +335,7 @@ void URL::set_pathname(String const& pathname) return; // 2. Empty this’s URL’s path. - auto url = m_url; // We copy the URL here to follow other browser's behaviour of reverting the path change if the parse failed. + auto url = m_url; // We copy the URL here to follow other browser's behavior of reverting the path change if the parse failed. url.set_paths({}); // 3. Basic URL parse the given value with this’s URL as url and path start state as state override. @@ -384,7 +384,7 @@ WebIDL::ExceptionOr URL::set_search(String const& search) auto input = search_as_string_view.substring_view(search_as_string_view.starts_with('?')); // 4. Set url’s query to the empty string. - auto url_copy = url; // We copy the URL here to follow other browser's behaviour of reverting the search change if the parse failed. + auto url_copy = url; // We copy the URL here to follow other browser's behavior of reverting the search change if the parse failed. url_copy.set_query(DeprecatedString::empty()); // 5. Basic URL parse input with url as url and query state as state override. @@ -438,7 +438,7 @@ void URL::set_hash(String const& hash) auto input = hash_as_string_view.substring_view(hash_as_string_view.starts_with('#')); // 3. Set this’s URL’s fragment to the empty string. - auto url = m_url; // We copy the URL here to follow other browser's behaviour of reverting the hash change if the parse failed. + auto url = m_url; // We copy the URL here to follow other browser's behavior of reverting the hash change if the parse failed. url.set_fragment(DeprecatedString::empty()); // 4. Basic URL parse input with this’s URL as url and fragment state as state override. diff --git a/Userland/Utilities/sql.cpp b/Userland/Utilities/sql.cpp index 2b6516b971..64567268c4 100644 --- a/Userland/Utilities/sql.cpp +++ b/Userland/Utilities/sql.cpp @@ -188,7 +188,7 @@ private: } return line.release_value(); // If the last file is exhausted but m_quit_when_files_read is false - // we fall through to the standard reading from the editor behaviour + // we fall through to the standard reading from the editor behavior } auto line_result = m_editor->get_line(prompt_for_level(m_repl_line_level)); if (line_result.is_error())