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` |