Skip to content

Commit 6934c0e

Browse files
Switch SymVer to SemVer (#198)
Renames `SymVer` to the correct `SemVer` (Semantic Versioning) in `PSDepend/Private/SemanticVersion.ps1`. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Signed-off-by: Gilbert Sanchez <me@gilbertsanchez.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 16113c8 commit 6934c0e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PSDepend/Private/SemanticVersion.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ namespace System.Management.Automation
8686
public SemanticVersion(int major, int minor, int patch, string label)
8787
: this(major, minor, patch)
8888
{
89-
// We presume the SemVer :
89+
// We presume the SemVer:
9090
// 1) major.minor.patch-label
9191
// 2) 'label' starts with letter or digit.
9292
if (!string.IsNullOrEmpty(label))

0 commit comments

Comments
 (0)