Skip to content

Commit

Permalink
Fix table formatting in the "Version ranges" doc (#1462)
Browse files Browse the repository at this point in the history
Currently this document renders fine on GitHub,
but the table is broken in mkdocs website.

Signed-off-by: Mikalai Radchuk <[email protected]>
  • Loading branch information
m1kola authored Nov 14, 2024
1 parent 0c2bfa1 commit eb6b83d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/concepts/version-ranges.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ If you use a wildcard character with the `=` operator, you define a patch level
This is equivalent to making a tilde range comparison.

*Example comparisons with wildcard characters*

| Comparison | Equivalent |
|------------|---------------------|
| `1.2.x` | `>= 1.2.0, < 1.3.0` |
Expand All @@ -55,6 +56,7 @@ You can use the tilde (`~`) operator to make patch release comparisons.
This is useful when you want to specify a minor version up to the next major version.

*Example patch release comparisons*

| Comparison | Equivalent |
|------------|---------------------|
| `~1.2.3` | `>= 1.2.3, < 1.3.0` |
Expand Down

0 comments on commit eb6b83d

Please sign in to comment.