Skip to content

Commit fc928fd

Browse files
committed
Testing code highlighting
1 parent 335b292 commit fc928fd

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Readme.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ and compile the protobuffer for C#. After that you are pretty much done.
8181

8282
Our *SampleObject.proto* looks like this:
8383

84-
>package Protobuf;
85-
>
86-
>message SampleObject {
87-
> int32 type = 1;
88-
> string objectName = 2;
89-
> string sampleString = 3;
90-
> int32 sampleInt = 4;
91-
> float sampleFloat = 5;
92-
>}
84+
`package Protobuf;
85+
86+
message SampleObject {
87+
int32 type = 1;
88+
string objectName = 2;
89+
string sampleString = 3;
90+
int32 sampleInt = 4;
91+
float sampleFloat = 5;
92+
}`
9393

9494
It contains a *type* which is **necessary** for all your objects you want to
9595
transmit. 2 sample strings, a float and an integer.

0 commit comments

Comments
 (0)