docs: fix rendering issue (#22211)

This commit is contained in:
Julien Robert 2024-10-10 11:56:49 +02:00 committed by GitHub
parent 910a97af4b
commit 04c1590a6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,7 +30,7 @@ interface to execute arbitrary code in a branched store. This is useful for exe
that needs to make changes to the store, but may need to be rolled back if an error occurs.
Below is a contrived example based on the `x/epoch` module's BeginBlocker logic.
```go reference
```go
func (k Keeper) BeginBlocker(ctx context.Context) error {
err := k.EpochInfo.Walk(
// ...