Skip to content

Commit 5df71a1

Browse files
committed
Fixed typo: Software and its features are usually 'deprecated', not 'depreciated'.
1 parent 66bc2b0 commit 5df71a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitVersionCore/GitVersionFinder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public SemanticVersion FindVersion(GitVersionContext context)
1414
var filePath = Path.Combine(context.Repository.GetRepositoryDirectory(), "NextVersion.txt");
1515
if (File.Exists(filePath))
1616
{
17-
throw new WarningException("NextVersion.txt has been depreciated. See http://gitversion.readthedocs.org/en/latest/configuration/ for replacement");
17+
throw new WarningException("NextVersion.txt has been deprecated. See http://gitversion.readthedocs.org/en/latest/configuration/ for replacement");
1818
}
1919

2020
return new NextVersionCalculator().FindVersion(context);

0 commit comments

Comments
 (0)