Skip to content

chore: fix some typos in README.md #1915

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

Merged
merged 1 commit into from
Feb 20, 2025
Merged
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
6 changes: 3 additions & 3 deletions data/migrations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ Example:
```
0_3_100_to_0_3_101.py
```
If several upgrades were skipped and you migrate from A to D, when B and C are available several migration script will be applied. Scipts to apply are picked by the following predicate:
If several upgrades were skipped and you migrate from A to D, when B and C are available several migration script will be applied. Scripts to apply are picked by the following predicate:
```
(script's first version >= a version we're migrating from) and (script's second version <= a version we're migrating to)
```

Example:
```
Available scipts:
Available scripts:
0_3_100_to_0_3_101
0_3_101_to_0_3_102
0_3_104_to_0_3_106
Expand All @@ -24,7 +24,7 @@ Available scipts:

We are migrating from 0.3.100 to 0.3.110

Sctipts to apply:
Scripts to apply:
0_3_100_to_0_3_101
0_3_101_to_0_3_102
0_3_104_to_0_3_106
Expand Down