We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a6637 commit 514afcfCopy full SHA for 514afcf
1 file changed
README.md
@@ -121,7 +121,7 @@ In a nutshell, the wire format writer understands the following types:
121
122
| Field type | Expected JS type (create, encode) | Conversion (fromObject)
123
|------------|-----------------------------------|------------------------
124
-| s-/u-/int32<br />s-/fixed32 | `number` (32 bit integer) | `value | 0` if signed<br />`value >>> 0` if unsigned
+| s-/u-/int32<br />s-/fixed32 | `number` (32 bit integer) | <code>value | 0</code> if signed<br />`value >>> 0` if unsigned
125
| 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
126
| float<br />double | `number` | `Number(value)`
127
| bool | `boolean` | `Boolean(value)`
0 commit comments