From 5d00b8dfe6d84e8b1d86885f901a8f2a57a33705 Mon Sep 17 00:00:00 2001 From: "David E. Wheeler" Date: Sat, 20 Jul 2024 17:00:50 -0400 Subject: [PATCH] Fix a few indentations --- doc/semver.mmd | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/semver.mmd b/doc/semver.mmd index 858e9ed..2d84830 100644 --- a/doc/semver.mmd +++ b/doc/semver.mmd @@ -85,7 +85,7 @@ for your database): If no rows are returned, you should be good to go. If there are results, here are Examples of invalid semantic versions and how they should be repaired. - Invalid Valid SemVer + Invalid Valid SemVer ----------- ---------------------------- 1.0.0-02799 -> 1.0.0-2799 1.0.0-0.02 -> 1.0.0-0.2 @@ -140,20 +140,20 @@ Note that "0.35.0-b1" is less than "0.35.0", as required by the specification. Use `ORDER BY` to get more of a feel for semantic version ordering rules: =% SELECT version FROM extensions ORDER BY version; - version - ----------- - 0.1.0 - 0.35.0-b1 - 0.35.0 - 1.5.0 + version + ----------- + 0.1.0 + 0.35.0-b1 + 0.35.0 + 1.5.0 =% SELECT version FROM extensions ORDER BY version DESC; - version - ----------- - 1.5.0 - 0.35.0 - 0.35.0-b1 - 0.1.0 + version + ----------- + 1.5.0 + 0.35.0 + 0.35.0-b1 + 0.1.0 Interface ---------