From a84e3403e8738c03d8fe9c8f312443574ab86c91 Mon Sep 17 00:00:00 2001 From: Jim Fielding <48921027+jimmyfielding@users.noreply.github.com> Date: Mon, 27 Feb 2023 15:54:10 +0000 Subject: [PATCH] docs(dsl): correct godoc comment on Expect func (#643) patter -> pattern --- gomega_dsl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gomega_dsl.go b/gomega_dsl.go index 4405c0682..c105a31d8 100644 --- a/gomega_dsl.go +++ b/gomega_dsl.go @@ -204,7 +204,7 @@ func Ω(actual interface{}, extra ...interface{}) Assertion { // All subsequent arguments will be required to be nil/zero. // // This is convenient if you want to make an assertion on a method/function that returns -// a value and an error - a common patter in Go. +// a value and an error - a common pattern in Go. // // For example, given a function with signature: //