Skip to content

Commit

Permalink
fixing some doc typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mwrock committed Oct 23, 2012
1 parent 2472925 commit 0625b4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ BuildChanges.Tests.ps1
. "$here\$sut"

Describe "BuildIfChanged" {
Context "Wnen there are Changes" {
Context "When there are Changes" {
Mock Get-Version {return 1.1}
Mock Get-NextVersion {return 1.2}
Mock Build {} -Verifiable -ParameterFilter {$version -eq 1.2}
Expand All @@ -38,7 +38,7 @@ BuildChanges.Tests.ps1
$result.Should.Be(1.2)
}
}
Context "Wnen there are no Changes" {
Context "When there are no Changes" {
Mock Get-Version -MockWith {return 1.1}
Mock Get-NextVersion -MockWith {return 1.1}
Mock Build {}
Expand Down
4 changes: 2 additions & 2 deletions en-US/about_Pester.help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ RUNNNING A PESTER TEST
. "$here\$sut"

Describe "BuildIfChanged" {
Context "Wnen there are Changes" {
Context "When there are Changes" {
Mock Get-Version {return 1.1}
Mock Get-NextVersion {return 1.2}
Mock Build {} -Verifiable -ParameterFilter {$version -eq 1.2}
Expand All @@ -86,7 +86,7 @@ RUNNNING A PESTER TEST
$result.Should.Be(1.2)
}
}
Context "Wnen there are no Changes" {
Context "When there are no Changes" {
Mock Get-Version -MockWith {return 1.1}
Mock Get-NextVersion -MockWith {return 1.1}
Mock Build {}
Expand Down

0 comments on commit 0625b4b

Please sign in to comment.