Skip to content

Commit

Permalink
chore(godoc): fixes typos in Measurement funcs
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoszmajsak authored and williammartin committed Feb 26, 2019
1 parent f493786 commit dbaca8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ginkgo_dsl.go
Original file line number Diff line number Diff line change
Expand Up @@ -457,13 +457,13 @@ func FMeasure(text string, body interface{}, samples int) bool {
return true
}

//You can mark Maeasurements as pending using PMeasure
//You can mark Measurements as pending using PMeasure
func PMeasure(text string, _ ...interface{}) bool {
globalSuite.PushMeasureNode(text, func(b Benchmarker) {}, types.FlagTypePending, codelocation.New(1), 0)
return true
}

//You can mark Maeasurements as pending using XMeasure
//You can mark Measurements as pending using XMeasure
func XMeasure(text string, _ ...interface{}) bool {
globalSuite.PushMeasureNode(text, func(b Benchmarker) {}, types.FlagTypePending, codelocation.New(1), 0)
return true
Expand Down

0 comments on commit dbaca8e

Please sign in to comment.