From 13ffb304b49be41cc17b5eab22f4800af4c33ee6 Mon Sep 17 00:00:00 2001 From: Peter Guy Date: Tue, 15 Aug 2023 13:26:55 -0700 Subject: [PATCH] fix broken go-cmp link (#54206) --- doc/dev/background-information/languages/testing_go_code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/dev/background-information/languages/testing_go_code.md b/doc/dev/background-information/languages/testing_go_code.md index f2c4dcd8708b..a085ece61b98 100644 --- a/doc/dev/background-information/languages/testing_go_code.md +++ b/doc/dev/background-information/languages/testing_go_code.md @@ -97,7 +97,7 @@ func TestSprocket(t *testing.T) { ### Asserting expected complex values -Expected values that are not simple scalars (really, anything not comparable with `==`) should use [go-cmp](https://github.com/google/go-cmp/cmp) to create a highly-readable diff string. +Expected values that are not simple scalars (really, anything not comparable with `==`) should use [go-cmp](https://github.com/google/go-cmp) to create a highly-readable diff string. ```go import "github.com/google/go-cmp/cmp"