Skip to content

Commit

Permalink
fix: code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
y9vad9 committed Aug 9, 2024
1 parent a6d9092 commit 6dcc00e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Writerside/topics/Getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ rsp {

Then, write your `.proto` files with services and types you need. For example:

```ProtoBuf
```
syntax = "proto3";
message Foo {
Expand Down
2 changes: 1 addition & 1 deletion Writerside/topics/Implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ If you're interested, how RSP works internally, but don't want to browse code, t
As you already know, code is generated and then serialized using ProtoBuf. In RSocket requests, there's two parts that
is sent/received: metadata and data. If we already know what encoded in the data (it's actually type specified in schema),
in metadata we encode the following:
```Kotlin
```
message ClientMetadata {
int32 schemaVersion = 1;
string serviceName = 2;
Expand Down

0 comments on commit 6dcc00e

Please sign in to comment.