Skip to content

Commit 9d8540d

Browse files
ElektrojungeAtWorkaciidgh
authored andcommitted
Some reformatting of existing docs in Version.swift
1 parent 02d489b commit 9d8540d

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

Sources/PackageDescription4/Version.swift

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@
88
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
99
*/
1010

11-
/// A semantic version according to the semantic versioning specification.
11+
/// A version according to the semantic versioning specification.
1212
///
13-
/// A package's version must conform to the semantic versioning standard in order to ensure
13+
/// A package version is a three period-separated integer, for example `1.0.0`. It must conform to the semantic versioning standard in order to ensure
1414
/// that your package behaves in a predictable manner once developers update their
1515
/// package dependency to a newer version. To achieve predictability, the semantic versioning specification proposes a set of rules and
16-
/// requirements that dictate how version numbers are assigned and incremented.
17-
///
18-
/// A package version is a three period-separated integer, for example `1.0.0`.
16+
/// requirements that dictate how version numbers are assigned and incremented. To learn more about the semantic versioning specification, visit
17+
/// [semver.org](www.semver.org).
1918
///
2019
/// **The Major Version**
2120
///
@@ -37,8 +36,7 @@
3736
/// This allows clients to benefit from bugfixes to your package without incurring
3837
/// any maintenance burden.
3938
///
40-
/// To learn more about the semantic versioning specification, visit
41-
/// [semver.org](www.semver.org).
39+
4240
public struct Version {
4341

4442
/// The major version according to the semantic versioning standard.

0 commit comments

Comments
 (0)