From 0c0ac9a6ce7a8d2d884226693ffc0e2822fc01b2 Mon Sep 17 00:00:00 2001 From: Shude Li Date: Tue, 18 Jun 2024 00:45:59 +0800 Subject: [PATCH] docs: remove Ineffective code block --- docs/learn/advanced/05-encoding.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/learn/advanced/05-encoding.md b/docs/learn/advanced/05-encoding.md index 8e2ed85d5605..8b37c2bcedaf 100644 --- a/docs/learn/advanced/05-encoding.md +++ b/docs/learn/advanced/05-encoding.md @@ -49,8 +49,6 @@ for their types, this is autogenerated via [buf](https://buf.build/) If modules use [Collections](../../build/packages/02-collections.md) or [ORM](../../build/packages/03-orm.md), encoding and decoding are handled, marshal and unmarshal should not be handled manually unless for specific cases identified by the developer. -```go reference - ### Gogoproto Modules are encouraged to utilize Protobuf encoding for their respective types. In the Cosmos SDK, we use the [Gogoproto](https://github.com/cosmos/gogoproto) specific implementation of the Protobuf spec that offers speed and DX improvements compared to the official [Google protobuf implementation](https://github.com/protocolbuffers/protobuf).