diff options
author | torinmr@chromium.org <torinmr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-22 21:58:12 +0000 |
---|---|---|
committer | torinmr@chromium.org <torinmr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-22 21:58:12 +0000 |
commit | 38b1ed8fb9e03a46d2415b44c3012f68fe16da70 (patch) | |
tree | 36bca19f122e9fd9bda9f148142b71a5333cdbb2 /native_client_sdk | |
parent | 1aef41203537a0fa5d3d34c7dd8e6ecd91012da6 (diff) | |
download | chromium_src-38b1ed8fb9e03a46d2415b44c3012f68fe16da70.zip chromium_src-38b1ed8fb9e03a46d2415b44c3012f68fe16da70.tar.gz chromium_src-38b1ed8fb9e03a46d2415b44c3012f68fe16da70.tar.bz2 |
Fixed documentation error in nacl_io.h
nacl_io.h incorrectly stated that the parameter
"allow_cross_origin_request" should be set to true to allow CORS. The
correct name of the parameter is "allow_cross_origin_requests" (with an
's').
BUG=None
TEST=None
R=sbc@chromium.org
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/22876023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219116 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk')
-rw-r--r-- | native_client_sdk/src/libraries/nacl_io/nacl_io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native_client_sdk/src/libraries/nacl_io/nacl_io.h b/native_client_sdk/src/libraries/nacl_io/nacl_io.h index 058ba68..4522219 100644 --- a/native_client_sdk/src/libraries/nacl_io/nacl_io.h +++ b/native_client_sdk/src/libraries/nacl_io/nacl_io.h @@ -89,7 +89,7 @@ void nacl_io_init_ppapi(PP_Instance instance, * "foo/bar.txt" will attempt to read from the URL * "http://example.com/path/foo/bar.txt". * data: A string of parameters: - * "allow_cross_origin_request": If "true", then reads from this + * "allow_cross_origin_requests": If "true", then reads from this * filesystem will follow the CORS standard for cross-origin requests. * See http://www.w3.org/TR/access-control. * "allow_credentials": If "true", credentials are sent with cross-origin |