diff --git a/admin/apibot.md b/admin/apibot.md index ef22277069ec..ba63aaf269fa 100644 --- a/admin/apibot.md +++ b/admin/apibot.md @@ -6,7 +6,7 @@ The in-progress CI4 API docs, warts & all, are rebuilt and then copied to a nested repository clone (`build/api`), with the result optionally pushed to the `master` branch of the `api` repo. -That would then be publically visible as the in-progress +That would then be publicly visible as the in-progress version of the [API](https://codeigniter4.github.io/api/). ## Requirements diff --git a/admin/docbot.md b/admin/docbot.md index f40b81a35d77..a3577b2e5d36 100644 --- a/admin/docbot.md +++ b/admin/docbot.md @@ -5,7 +5,7 @@ Builds & deploys user guide. The in-progress CI4 user guide, warts & all, is rebuilt in a nested repository clone (`user_guide_src/build/html`), with the result optionally pushed to the `gh-pages` branch of the repo. -That would then be publically visible as the in-progress +That would then be publicly visible as the in-progress version of the [User Guide](https://codeigniter4.github.io/CodeIgniter4/). ## Requirements diff --git a/rector.php b/rector.php index 6f12a4d11c38..1a78def1c1e2 100644 --- a/rector.php +++ b/rector.php @@ -174,7 +174,7 @@ CompactToVariablesRector::class, - // possibly isset() on purpose, on updated Config classes property accross versions + // possibly isset() on purpose, on updated Config classes property across versions IssetOnPropertyObjectToPropertyExistsRector::class, AssertFuncCallToPHPUnitAssertRector::class => [ diff --git a/system/Database/SQLSRV/Builder.php b/system/Database/SQLSRV/Builder.php index 0b17a52ff344..3c3e798c3e18 100644 --- a/system/Database/SQLSRV/Builder.php +++ b/system/Database/SQLSRV/Builder.php @@ -321,7 +321,7 @@ private function getFullName(string $table): string } /** - * Add permision statements for index value inserts + * Add permission statements for index value inserts */ private function addIdentity(string $fullTable, string $insert): string { diff --git a/system/HTTP/URI.php b/system/HTTP/URI.php index 6b4aeca8e56f..bc848ba5c73e 100644 --- a/system/HTTP/URI.php +++ b/system/HTTP/URI.php @@ -629,7 +629,7 @@ public function getTotalSegments(): int /** * Formats the URI as a string. * - * Warning: For backwards-compatability this method + * Warning: For backwards-compatibility this method * assumes URIs with the same host as baseURL should * be relative to the project's configuration. * This aspect of __toString() is deprecated and should be avoided. diff --git a/user_guide_src/source/changelogs/v4.6.0.rst b/user_guide_src/source/changelogs/v4.6.0.rst index e452483ce872..c26d80dd249a 100644 --- a/user_guide_src/source/changelogs/v4.6.0.rst +++ b/user_guide_src/source/changelogs/v4.6.0.rst @@ -246,7 +246,7 @@ Routing Negotiator ========== -- Added a feature flag ``Feature::$strictLocaleNegotiation`` to enable strict locale comparision. +- Added a feature flag ``Feature::$strictLocaleNegotiation`` to enable strict locale comparison. Previously, response with language headers ``Accept-language: en-US,en-GB;q=0.9`` returned the first allowed language ``en`` could instead of the exact language ``en-US`` or ``en-GB``. Set the value to ``true`` to enable comparison not only by language code ('en' - ISO 639-1) but also by regional code ('en-US' - ISO 639-1 plus ISO 3166-1 alpha).