Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] fix some typos #4595

Merged
merged 1 commit into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docsource/040_run_migration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ OpenUpgrade
Make the `openupgrade_framework` and the `openupgrade_scripts` modules
available in the addons path in the Odoo instance of the new version.

Or, for older versions: check out the OpenUpgrade source code from Github
Or, for older versions: check out the OpenUpgrade source code from GitHub
for the branches you need. Each branch migrates to its version from the
previous version, so branch 13.0 migrates from 12.0 to 13.0. If you are
migrating across multiple versions, you need to run each version of
Expand Down Expand Up @@ -87,7 +87,7 @@ Run the upgrade and check for errors. You will probably learn a lot about
your data and have to do some manual clean up before and after the upgrade.
Expect to repeat the process several times as you encounter errors, clean up
your data, and try again. If necessary, ask for help or report bugs on
Github.
GitHub.

Write the missing migration scripts
...................................
Expand Down
4 changes: 2 additions & 2 deletions docsource/070_migration_files.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ The change description flags the following types of change:
stopped doing so. You need to audit the function for any change in
possible values and may need to map any differences you encounter.

(Of course, a selection function could change the set of posible values
(Of course, a selection function could change the set of possible values
in between functions.)

* The field changes type. This always calls for action in your upgrade
Expand All @@ -130,7 +130,7 @@ The change description flags the following types of change:
res.partner.title.

* A relation field's relation changes. You need to migrate the one target
model to the other, and update the references to them
model to the other, and update the references to them.

* A field is deleted from the model (marked by 'DEL'). Also fields from
deleted models are marked in this way. TODO: mark fields from deleted
Expand Down
2 changes: 1 addition & 1 deletion docsource/080_migration_script_development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ See `OpenUpgrade API <https://oca.github.io/openupgradelib/API.html>`_
For many modules, a developer will not even need to write any function, but will
"simply" need to call pre-existing functions from `openupgradelib` with the appropriate
arguments. The main complexities becomes to learn what are the functions available in
`openupgradelib` and then to select appropriatly the arguments (usually according to
`openupgradelib` and then to select appropriately the arguments (usually according to
the `openupgrade_analysis.txt`, see below).

For instance, the migration to version 13 of mass_mailing did not require any custom
Expand Down
2 changes: 1 addition & 1 deletion docsource/090_contribute.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Writing migration scripts for Odoo is a lot of work, that can not be
accomplished by a single party. We need your help.

If you are at all interested in discussing strategic, functional or
technical issues, please post an issue on the Github project:
technical issues, please post an issue on the GitHub project:
`<https://github.com/OCA/OpenUpgrade>`_.

If you are a developer, give the OpenUpgrade software a go and give us
Expand Down
2 changes: 1 addition & 1 deletion docsource/100_maintain_repository.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Manual changes

* In the ``OpenUpgrade``/``documentation`` branch, add a new line in ``build_openupgrade_docs``.

* Push a test database for the old release to Github (see https://github.com/OCA/OpenUpgrade/wiki/How-to-create-a-reference-database)
* Push a test database for the old release to GitHub (see https://github.com/OCA/OpenUpgrade/wiki/How-to-create-a-reference-database)

* Execute the technical migration of ``openupgrade_framework``.

Expand Down
Loading