summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorolf <Olf0@users.noreply.github.com>2022-11-29 21:17:16 +0100
committerMichal Domonkos <mdomonko@redhat.com>2023-03-13 15:32:25 +0100
commitdad1de043b6c04f4de746b5e390d2d03baa7de24 (patch)
tree13336c59817f398f466f3380cf51e1d9233eaf3c
parent95815f6ccc866659c90b6e5b83744bb973bceab1 (diff)
downloadrpm-dad1de043b6c04f4de746b5e390d2d03baa7de24.tar.gz
Fix broken markdown quoting …
… introduced in [commit 8b635e2](https://github.com/rpm-software-management/rpm/commit/8b635e2016931ec5bb7dddd6608c09b0b16f7b8e): - [Lines 98 - 101](https://github.com/rpm-software-management/rpm/commit/8b635e2016931ec5bb7dddd6608c09b0b16f7b8e#diff-f0f022b189e54462e3284599236a3b192b721928da4bea1a85d738b25ba5eaa7R98-R101): The two tildes lacked quoting, hence the text between them was struck out. - [Line 96](https://github.com/rpm-software-management/rpm/commit/8b635e2016931ec5bb7dddd6608c09b0b16f7b8e#diff-f0f022b189e54462e3284599236a3b192b721928da4bea1a85d738b25ba5eaa7R96): Eliminate IMO superfluous triple quoting: "**\`\`\`**" → "*\`*" - Rephrase [lines 95 - 96](https://github.com/rpm-software-management/rpm/commit/8b635e2016931ec5bb7dddd6608c09b0b16f7b8e#diff-f0f022b189e54462e3284599236a3b192b721928da4bea1a85d738b25ba5eaa7R95-R96), to be more concise. (cherry picked from commit a108d36acf29796b443285658a606c1b13866d9a)
-rw-r--r--docs/manual/spec.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/manual/spec.md b/docs/manual/spec.md
index 07cf1892c..c023131e3 100644
--- a/docs/manual/spec.md
+++ b/docs/manual/spec.md
@@ -96,13 +96,13 @@ definition:
Version of the packaged content, typically software.
-The version string consists of alphanumeric characters, and can optionally
-be segmented with separators `.`, ```_``` and `+`.
+The version string consists of alphanumeric characters, which can optionally
+be segmented with the separators `.`, `_` and `+`, plus `~` and `^` (see below).
-Tilde (`~`) can be used to force sorting lower than base (1.1~201601 < 1.1)
-Caret (`^`) can be used to force sorting higher than base (1.1^201601 > 1.1)
+Tilde (`~`) can be used to force sorting lower than base (1.1\~201601 < 1.1)
+Caret (`^`) can be used to force sorting higher than base (1.1^201601 > 1.1).
These are useful for handling pre- and post-release versions, such as
-1.0~rc1 and 2.0^a.
+1.0\~rc1 and 2.0^a.
#### Release