[PR #12231] [CLOSED] Fix typos and minor grammar issues in documentation (.rst files) #13599

Closed
opened 2026-01-22 16:17:43 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/12231
Author: @alisolphp
Created: 10/21/2025
Status: Closed

Base: 2.20.xHead: fix-typos-docs-3-5


📝 Commits (10+)

  • b1f8253 Merge pull request #11772 from doctrine/2.20.x
  • 8ebd98e Merge pull request #11773 from doctrine/3.3.x-merge-up-into-3.4.x_xx7XyUCl
  • a9873c8 Take hardcoded reference column name out of JoinColumn attribute
  • 9f2b367 Merge pull request #11776 from curry684/issue-9558
  • 55dc02c changed confusing negative wording (#11775)
  • 68c8774 Update working-with-objects.rst (#7553)
  • 327418a Merge branch '3.3.x' into 3.4.x
  • 0d2cb6a Fix CS (#11782)
  • 596da35 UPGRADE: Document QueryBuilder::setParameters() Type enforcement
  • 5a59923 Merge pull request #11791 from jonnyeom/patch-2

📊 Changes

1663 files changed (+35865 additions, -79371 deletions)

View changed files

📝 .doctrine-project.json (+32 -53)
.github/ISSUE_TEMPLATE/BC_Break.md (+0 -37)
.github/ISSUE_TEMPLATE/Bug.md (+0 -34)
.github/ISSUE_TEMPLATE/Feature_Request.md (+0 -18)
.github/ISSUE_TEMPLATE/Support_Question.md (+0 -6)
.github/dependabot.yml (+9 -0)
📝 .github/workflows/continuous-integration.yml (+103 -69)
📝 .github/workflows/phpbench.yml (+1 -1)
.github/workflows/stale.yml (+24 -0)
📝 .github/workflows/static-analysis.yml (+15 -32)
.github/workflows/website-schema.yml (+21 -0)
📝 CONTRIBUTING.md (+1 -1)
📝 README.md (+1 -3)
📝 UPGRADE.md (+913 -2)
bin/doctrine (+0 -4)
bin/doctrine-pear.php (+0 -43)
bin/doctrine.bat (+0 -9)
bin/doctrine.php (+0 -62)
📝 ci/github/phpunit/mysqli.xml (+14 -6)
📝 ci/github/phpunit/pdo_mysql.xml (+14 -7)

...and 80 more files

📄 Description

Summary

This pull request fixes several typos and minor grammar issues across the documentation files under docs/en/reference/.

These corrections improve the readability and accuracy of the text without changing any technical content.


Details

📄 advanced-configuration.rst

  • Before: passed as the first argument to he constructor
  • After: passed as the first argument to the constructor

📄 architecture.rst

  • Before: cannot be initialiazed anymore
  • After: cannot be initialized anymore

📄 filters.rst

  • Before: Don't change the values base on external inputs.
  • After: Don't change the values based on external inputs.

📄 security.rst

  • Before: Now the possiblity of mass-assignment exists...
  • After: Now the possibility of mass-assignment exists...

📄 second-level-cache.rst

  1. Before: An collection region could look something like:
    After: A collection region could look something like:

  2. Before: an special query hint
    After: a special query hint


Notes

  • All changes are limited to documentation (.rst) files.
  • No behavioral, functional, or code modifications were made.
  • The patch aligns with the existing documentation style and recent commits in the Doctrine ORM repository.

  • Ready to merge — no code or build impact.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/doctrine/orm/pull/12231 **Author:** [@alisolphp](https://github.com/alisolphp) **Created:** 10/21/2025 **Status:** ❌ Closed **Base:** `2.20.x` ← **Head:** `fix-typos-docs-3-5` --- ### 📝 Commits (10+) - [`b1f8253`](https://github.com/doctrine/orm/commit/b1f8253105aa5382c495e5f9f8ef34e297775428) Merge pull request #11772 from doctrine/2.20.x - [`8ebd98e`](https://github.com/doctrine/orm/commit/8ebd98ee92040a7134a28055d3c4cf87bfec6e4a) Merge pull request #11773 from doctrine/3.3.x-merge-up-into-3.4.x_xx7XyUCl - [`a9873c8`](https://github.com/doctrine/orm/commit/a9873c86bb0c7a2efb0bb42b3227a9963be215d8) Take hardcoded reference column name out of JoinColumn attribute - [`9f2b367`](https://github.com/doctrine/orm/commit/9f2b367081c200b588a0a4faca38f8179ec58850) Merge pull request #11776 from curry684/issue-9558 - [`55dc02c`](https://github.com/doctrine/orm/commit/55dc02c39f540aaee5c8dee0e5908b5b21e3bf56) changed confusing negative wording (#11775) - [`68c8774`](https://github.com/doctrine/orm/commit/68c87740aa07d547a60818a288b2ce44ee74aba0) Update working-with-objects.rst (#7553) - [`327418a`](https://github.com/doctrine/orm/commit/327418a4b7b11e9b012baa753ce94ec9d122c01f) Merge branch '3.3.x' into 3.4.x - [`0d2cb6a`](https://github.com/doctrine/orm/commit/0d2cb6acd184ede53949f77f8c365bf6132e6873) Fix CS (#11782) - [`596da35`](https://github.com/doctrine/orm/commit/596da353c225ed0200599c9de637f29a967afb0e) UPGRADE: Document QueryBuilder::setParameters() Type enforcement - [`5a59923`](https://github.com/doctrine/orm/commit/5a599233c99dea00df75be381da30311e055a657) Merge pull request #11791 from jonnyeom/patch-2 ### 📊 Changes **1663 files changed** (+35865 additions, -79371 deletions) <details> <summary>View changed files</summary> 📝 `.doctrine-project.json` (+32 -53) ➖ `.github/ISSUE_TEMPLATE/BC_Break.md` (+0 -37) ➖ `.github/ISSUE_TEMPLATE/Bug.md` (+0 -34) ➖ `.github/ISSUE_TEMPLATE/Feature_Request.md` (+0 -18) ➖ `.github/ISSUE_TEMPLATE/Support_Question.md` (+0 -6) ➕ `.github/dependabot.yml` (+9 -0) 📝 `.github/workflows/continuous-integration.yml` (+103 -69) 📝 `.github/workflows/phpbench.yml` (+1 -1) ➕ `.github/workflows/stale.yml` (+24 -0) 📝 `.github/workflows/static-analysis.yml` (+15 -32) ➕ `.github/workflows/website-schema.yml` (+21 -0) 📝 `CONTRIBUTING.md` (+1 -1) 📝 `README.md` (+1 -3) 📝 `UPGRADE.md` (+913 -2) ➖ `bin/doctrine` (+0 -4) ➖ `bin/doctrine-pear.php` (+0 -43) ➖ `bin/doctrine.bat` (+0 -9) ➖ `bin/doctrine.php` (+0 -62) 📝 `ci/github/phpunit/mysqli.xml` (+14 -6) 📝 `ci/github/phpunit/pdo_mysql.xml` (+14 -7) _...and 80 more files_ </details> ### 📄 Description ## Summary This pull request fixes several typos and minor grammar issues across the documentation files under `docs/en/reference/`. These corrections improve the readability and accuracy of the text without changing any technical content. --- ## Details ### 📄 `advanced-configuration.rst` * **Before:** `passed as the first argument to he constructor` * **After:** `passed as the first argument to the constructor` ### 📄 `architecture.rst` * **Before:** `cannot be initialiazed anymore` * **After:** `cannot be initialized anymore` ### 📄 `filters.rst` * **Before:** `Don't change the values base on external inputs.` * **After:** `Don't change the values based on external inputs.` ### 📄 `security.rst` * **Before:** `Now the possiblity of mass-assignment exists...` * **After:** `Now the possibility of mass-assignment exists...` ### 📄 `second-level-cache.rst` 1. **Before:** `An collection region could look something like:` **After:** `A collection region could look something like:` 2. **Before:** `an special query hint` **After:** `a special query hint` --- ## Notes * All changes are limited to documentation (`.rst`) files. * No behavioral, functional, or code modifications were made. * The patch aligns with the existing documentation style and recent commits in the Doctrine ORM repository. --- - [x] **Ready to merge — no code or build impact.** --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-22 16:17:43 +01:00
admin closed this issue 2026-01-22 16:17:43 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#13599