summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/static
diff options
context:
space:
mode:
authorpam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-05 16:37:30 +0000
committerpam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-05 16:37:30 +0000
commite48f67f2269b18176eff4004eaeea3181368efd1 (patch)
tree7634d38a02e0fa752e0e690bd6d2a574677a33ff /chrome/common/extensions/docs/static
parentf5ed80cd42bbbe9e5ec040aa04ed4f0690bc58b7 (diff)
downloadchromium_src-e48f67f2269b18176eff4004eaeea3181368efd1.zip
chromium_src-e48f67f2269b18176eff4004eaeea3181368efd1.tar.gz
chromium_src-e48f67f2269b18176eff4004eaeea3181368efd1.tar.bz2
Fix typos in privacy API documentation.
BUG=116518 TEST=none (documentation only) Review URL: http://codereview.chromium.org/9582005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124950 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/docs/static')
-rw-r--r--chrome/common/extensions/docs/static/privacy.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/extensions/docs/static/privacy.html b/chrome/common/extensions/docs/static/privacy.html
index bb8f852..c5dd2dd 100644
--- a/chrome/common/extensions/docs/static/privacy.html
+++ b/chrome/common/extensions/docs/static/privacy.html
@@ -33,7 +33,7 @@
<p>
Reading the current value of a Chrome setting is straightforward. You'll first
need to find the property you're interested in, then you'll call
- <code>get()</code> on that object in order to retrieve it's current value and
+ <code>get()</code> on that object in order to retrieve its current value and
your extension's level of control. For example, to determine if Chrome's
Autofill feature is enabled, you'd write:
</p>
@@ -48,7 +48,7 @@
<p>
Changing the value of a setting is a little bit more complex, simply because
you first must verify that your extension can control the setting. The user
- won't see any change to her settings if you extension toggles a setting that
+ won't see any change to her settings if your extension toggles a setting that
is either locked to a specific value by enterprise policies
(<code>levelOfControl</code> will be set to "not_controllable"), or if another
extension is controlling the value (<code>levelOfControl</code> will be set to
@@ -69,7 +69,7 @@
This means that you ought to use the <code>get()</code> method to determine
your level of access, and then only call <code>set()</code> if your extension
can grab control over the setting (in fact if your extension can't control the
- setting it's probably a good idea to visibly disable the functionality to
+ setting it's probably a good idea to visually disable the functionality to
reduce user confusion):
</p>