Use proper quoting

Summary:
OCD
Closes https://github.com/facebook/metro/pull/166

Reviewed By: rafeca

Differential Revision: D7747493

Pulled By: mjesun

fbshipit-source-id: e4147ffbd9bba9bd8a4774d14d0dd2034b09f556
This commit is contained in:
Miguel Jiménez Esún 2018-04-25 10:26:18 -07:00 committed by Facebook Github Bot
parent 2264fd9215
commit 077a20b545

View File

@ -13,7 +13,7 @@ This is the standard bundling format. In this format, all files are wrapped with
This format composes the bundle as a binary file, which format has the following parts (all numbers are expressed in Little Endian):
* A magic number: a `uint32` must be located at the beginning of the file, with the value '0xFB0BD1E5'. This is used to verify the file.
* A magic number: a `uint32` must be located at the beginning of the file, with the value `0xFB0BD1E5`. This is used to verify the file.
* An offset table: the table is a sequence of `uint32` pairs, with a header
* For the header, two `uint32`s can be found: the length of the table, and the length of the startup code.
* For the pairs, they represent the offset in the file and the length of code module, in bytes.