Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Unified Diff: native_client_sdk/src/doc/reference/nacl-manifest-format.rst

Issue 394283002: [NaCl SDK]: Docs -- fix typo in nacl manifest specification (missing "portable") (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « native_client_sdk/doc_generated/reference/nacl-manifest-format.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/doc/reference/nacl-manifest-format.rst
diff --git a/native_client_sdk/src/doc/reference/nacl-manifest-format.rst b/native_client_sdk/src/doc/reference/nacl-manifest-format.rst
index 501cb26793ced91dd10dfa294417d68115337975..a85799875dda803800d0a85b49aed0d5a07c58de 100644
--- a/native_client_sdk/src/doc/reference/nacl-manifest-format.rst
+++ b/native_client_sdk/src/doc/reference/nacl-manifest-format.rst
@@ -56,20 +56,23 @@ Example of a ``program`` for Portable Native Client:
{
"program": {
- "pnacl-translate": {
- // url is required
- "url": "url_to_my_pexe",
-
- // optlevel is optional
- "optlevel": 2
- },
- // pnacl-debug is optional
- "pnacl-debug": {
- // url is required
- "url": "url_to_my_bitcode_bc",
-
- // optlevel is optional
- "optlevel": 0
+ "portable": {
+ // Required
+ "pnacl-translate": {
+ // url is required
+ "url": "url_to_my_pexe",
+
+ // optlevel is optional
+ "optlevel": 2
+ },
+ // pnacl-debug is optional
+ "pnacl-debug": {
+ // url is required
+ "url": "url_to_my_bitcode_bc",
+
+ // optlevel is optional
+ "optlevel": 0
+ }
}
}
}
« no previous file with comments | « native_client_sdk/doc_generated/reference/nacl-manifest-format.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698