Skip to content

Commit f63d436

Browse files
authored
Merge pull request #756 from gilly3/fixReadme
Fix markdown for pipe in code in table
2 parents 35a6637 + 514afcf commit f63d436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ In a nutshell, the wire format writer understands the following types:
121121

122122
| Field type | Expected JS type (create, encode) | Conversion (fromObject)
123123
|------------|-----------------------------------|------------------------
124-
| s-/u-/int32<br />s-/fixed32 | `number` (32 bit integer) | `value | 0` if signed<br />`value >>> 0` if unsigned
124+
| s-/u-/int32<br />s-/fixed32 | `number` (32 bit integer) | <code>value &#124; 0</code> if signed<br />`value >>> 0` if unsigned
125125
| s-/u-/int64<br />s-/fixed64 | `Long`-like (optimal)<br />`number` (53 bit integer) | `Long.fromValue(value)` with long.js<br />`parseInt(value, 10)` otherwise
126126
| float<br />double | `number` | `Number(value)`
127127
| bool | `boolean` | `Boolean(value)`

0 commit comments

Comments
 (0)