From 7417ddf351b71afe8dd189443ad39bb75922d578 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 3 Nov 2022 13:08:10 -0400 Subject: [PATCH] Removes space in hyperlink (#9653) (#9664) Simple formatting issue. --- #### PR checklist - [x] Tests written/updated, or no tests needed - [x] `CHANGELOG_PENDING.md` updated, or no changelog entry needed - [x] Updated relevant documentation (`docs/`) and code comments, or no documentation updates needed (cherry picked from commit f58ba4d2f9c71071554dfb0273252edf90aa85e5) Co-authored-by: Lasaro Camargos --- STYLE_GUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STYLE_GUIDE.md b/STYLE_GUIDE.md index 98e81d72357..0ed354f6b80 100644 --- a/STYLE_GUIDE.md +++ b/STYLE_GUIDE.md @@ -98,7 +98,7 @@ Sometimes it's necessary to rename libraries to avoid naming collisions or ambig * Make use of table driven testing where possible and not-cumbersome * [Inspiration](https://dave.cheney.net/2013/06/09/writing-table-driven-tests-in-go) * Make use of [assert](https://godoc.org/github.com/stretchr/testify/assert) and [require](https://godoc.org/github.com/stretchr/testify/require) -* When using mocks, it is recommended to use Testify [mock] ( +* When using mocks, it is recommended to use Testify [mock]( ) along with [Mockery](https://github.com/vektra/mockery) for autogeneration ## Errors