summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI.Toolkit/SemanticVersion.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-11-04 23:52:59 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-11-04 23:52:59 -0500
commit49e944d06fa7040889b569b62cb0025c057834df (patch)
tree19b8e961a8808a3e367e6b4566c0edc89dcfe0f4 /src/StardewModdingAPI.Toolkit/SemanticVersion.cs
parent724d3fccb1c7a5ec842314436126271c5697129a (diff)
downloadSMAPI-49e944d06fa7040889b569b62cb0025c057834df.tar.gz
SMAPI-49e944d06fa7040889b569b62cb0025c057834df.tar.bz2
SMAPI-49e944d06fa7040889b569b62cb0025c057834df.zip
update HTTP URLs to HTTPS
Diffstat (limited to 'src/StardewModdingAPI.Toolkit/SemanticVersion.cs')
-rw-r--r--src/StardewModdingAPI.Toolkit/SemanticVersion.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI.Toolkit/SemanticVersion.cs b/src/StardewModdingAPI.Toolkit/SemanticVersion.cs
index 2a78d2f0..32fea3d7 100644
--- a/src/StardewModdingAPI.Toolkit/SemanticVersion.cs
+++ b/src/StardewModdingAPI.Toolkit/SemanticVersion.cs
@@ -5,7 +5,7 @@ namespace StardewModdingAPI.Toolkit
{
/// <summary>A semantic version with an optional release tag.</summary>
/// <remarks>
- /// The implementation is defined by Semantic Version 2.0 (http://semver.org/), with a few deviations:
+ /// The implementation is defined by Semantic Version 2.0 (https://semver.org/), with a few deviations:
/// - short-form "x.y" versions are supported (equivalent to "x.y.0");
/// - hyphens are synonymous with dots in prerelease tags (like "-unofficial.3-pathoschild");
/// - +build suffixes are not supported;