From 514afcfa890aa598e93254576c4fd6062e0eff3b Mon Sep 17 00:00:00 2001 From: Ivan Gilchrist Date: Mon, 10 Apr 2017 11:25:44 -0700 Subject: [PATCH] Fix markdown for pipe in code in table Solution thanks to http://stackoverflow.com/a/17320389/361684 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e077e319..f0f394a2a 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ In a nutshell, the wire format writer understands the following types: | Field type | Expected JS type (create, encode) | Conversion (fromObject) |------------|-----------------------------------|------------------------ -| s-/u-/int32
s-/fixed32 | `number` (32 bit integer) | `value | 0` if signed
`value >>> 0` if unsigned +| s-/u-/int32
s-/fixed32 | `number` (32 bit integer) | value | 0 if signed
`value >>> 0` if unsigned | s-/u-/int64
s-/fixed64 | `Long`-like (optimal)
`number` (53 bit integer) | `Long.fromValue(value)` with long.js
`parseInt(value, 10)` otherwise | float
double | `number` | `Number(value)` | bool | `boolean` | `Boolean(value)`