Commit 5408a5c6 authored by jvoung@google.com's avatar jvoung@google.com

[NaCl SDK]: Docs -- fix typo in nacl manifest specification (missing "portable")

The manifest spec doc was missing the extra dictionary for "portable".
Spotted by Brad. Thanks!

BUG=none
NOTRY=true
R=sbc@chromium.org

Review URL: https://codereview.chromium.org/394283002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283576 0039d316-1c4b-4281-b951-d872f2087c98
parent ea25b782
...@@ -61,20 +61,23 @@ section for the rules on URL resolution.</p> ...@@ -61,20 +61,23 @@ section for the rules on URL resolution.</p>
<pre class="prettyprint"> <pre class="prettyprint">
{ {
&quot;program&quot;: { &quot;program&quot;: {
&quot;pnacl-translate&quot;: { &quot;portable&quot;: {
// url is required // Required
&quot;url&quot;: &quot;url_to_my_pexe&quot;, &quot;pnacl-translate&quot;: {
// url is required
&quot;url&quot;: &quot;url_to_my_pexe&quot;,
// optlevel is optional // optlevel is optional
&quot;optlevel&quot;: 2 &quot;optlevel&quot;: 2
}, },
// pnacl-debug is optional // pnacl-debug is optional
&quot;pnacl-debug&quot;: { &quot;pnacl-debug&quot;: {
// url is required // url is required
&quot;url&quot;: &quot;url_to_my_bitcode_bc&quot;, &quot;url&quot;: &quot;url_to_my_bitcode_bc&quot;,
// optlevel is optional // optlevel is optional
&quot;optlevel&quot;: 0 &quot;optlevel&quot;: 0
}
} }
} }
} }
......
...@@ -56,20 +56,23 @@ Example of a ``program`` for Portable Native Client: ...@@ -56,20 +56,23 @@ Example of a ``program`` for Portable Native Client:
{ {
"program": { "program": {
"pnacl-translate": { "portable": {
// url is required // Required
"url": "url_to_my_pexe", "pnacl-translate": {
// url is required
// optlevel is optional "url": "url_to_my_pexe",
"optlevel": 2
}, // optlevel is optional
// pnacl-debug is optional "optlevel": 2
"pnacl-debug": { },
// url is required // pnacl-debug is optional
"url": "url_to_my_bitcode_bc", "pnacl-debug": {
// url is required
// optlevel is optional "url": "url_to_my_bitcode_bc",
"optlevel": 0
// optlevel is optional
"optlevel": 0
}
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment