From b712f5d3b22769d13f2c09cfe62eb8183c1c4577 Mon Sep 17 00:00:00 2001 From: Mikalai Radchuk Date: Thu, 14 Nov 2024 12:36:05 +0100 Subject: [PATCH] Fix table formatting in the "Version ranges" doc Currently this document renders fine on GitHub, but the table is broken in mkdocs website. Signed-off-by: Mikalai Radchuk --- docs/concepts/version-ranges.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/concepts/version-ranges.md b/docs/concepts/version-ranges.md index 75e88f04e..457a3eb20 100644 --- a/docs/concepts/version-ranges.md +++ b/docs/concepts/version-ranges.md @@ -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` | @@ -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` |