Skip to content

Commit 99e0648

Browse files
authored
Merge pull request #2295 from pgrimaud/master
Fix typos
2 parents 12a2baa + bc4ea22 commit 99e0648

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/input/docs/build-server-support/build-server/teamcity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ as msbuild/environmental variables to other build steps
7373
to the project called `GitVersion.NuGetVersion`. If many of your projects uses
7474
git-flow and SemVer you can add the parameter to the "root-project"
7575
(TeamCity 8.x+). You need a dummy param because GitVersion creates the variables
76-
at runtime, and you cannot reference a paramter which is not available
76+
at runtime, and you cannot reference a parameter which is not available
7777
statically. GitVersion will overwrite the dummy value
7878
* Then setup you nuget pack build set the "version" to `%GitVersion.NuGetVersion%`
7979
* If you do your pack in a build script then you can just use environmental

docs/input/docs/reference/intro-to-semver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ SemVer introduces conventions about breaking changes into our version numbers so
1818
* `{major}` is only incremented if the release has breaking changes (includes bug fixes which have breaking behavioural changes
1919
* `{minor}` is incremented if the release has new non-breaking features
2020
* `{patch}` is incremented if the release only contains non-breaking bug fixes
21-
* `{tag}` is optional and denotes a pre-release of the version preceeding
21+
* `{tag}` is optional and denotes a pre-release of the version preceding
2222
* `{buildmetadata}` is optional and contains additional information about the version, but **does not affect** the semantic version preceding it.
2323

2424
Only one number should be incremented per release, and all lower parts should be reset to 0 (if `{major}` is incremented, then `{minor}` and `{patch}` should become 0).
2525

26-
For a more complete explaination check out [semver.org](http://semver.org) which is the official spec. Remember this is a brief introduction and does not cover all parts of semantic versioning, just the important parts to get started.
26+
For a more complete explanation check out [semver.org](http://semver.org) which is the official spec. Remember this is a brief introduction and does not cover all parts of semantic versioning, just the important parts to get started.
2727

2828
## SemVer in GitVersion
2929
GitVersion makes it easy to follow semantic versioning in your library by automatically calculating the next semantic version which your library/application is likely to use. In [GitFlow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow/) the develop branch will bump the *minor* when master is tagged, while [GitHubFlow](https://guides.github.com/introduction/flow/) will bump the *patch*.

docs/input/docs/usage/command-line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ This can be done for *.cs, *.vb and *.fs files.
8585

8686
When requesting that GitVersion generate an assembly info file you are limited
8787
to only specifying a single `<filename>` within the `/updateassemblyinfo`
88-
switch, this is to prevent the creation of mulitple assembly info files with the
88+
switch, this is to prevent the creation of multiple assembly info files with the
8989
same assembly version attributes. If this occurs your build will fail.
9090

9191
### Example: When AssemblyInfo.cs does not exist

0 commit comments

Comments
 (0)