summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-02 21:58:44 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-02 21:58:44 +0000
commitf03e304a3008ae44591917cbb5949dc9cb54482c (patch)
tree30864b976e7bf93059fd898cbf68fb5881b2a13e /chrome/common
parentd3e3e9d88047d6cf4754edc75286bedee9182781 (diff)
downloadchromium_src-f03e304a3008ae44591917cbb5949dc9cb54482c.zip
chromium_src-f03e304a3008ae44591917cbb5949dc9cb54482c.tar.gz
chromium_src-f03e304a3008ae44591917cbb5949dc9cb54482c.tar.bz2
Fix typo.
TBR=kathyw@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25246 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/extensions/docs/static/content_scripts.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/docs/static/content_scripts.html b/chrome/common/extensions/docs/static/content_scripts.html
index 6013133..ce6d0f6 100644
--- a/chrome/common/extensions/docs/static/content_scripts.html
+++ b/chrome/common/extensions/docs/static/content_scripts.html
@@ -95,7 +95,7 @@ document.getElementById("button").onclick = function() {
<p>Now, if the button is pressed, you will see both greetings.
-<p>Isolated worlds allow each content script to make changes to its JavaScript environment without worrying about conflicting with the page or with other contnet scripts. For example, a content script could include JQuery v1 and the page could include JQuery v2, and they wouldn't conflict with each other.
+<p>Isolated worlds allow each content script to make changes to its JavaScript environment without worrying about conflicting with the page or with other content scripts. For example, a content script could include JQuery v1 and the page could include JQuery v2, and they wouldn't conflict with each other.
<p>Another important benefit of isolated worlds is that they completely separate the JavaScript on the page from the JavaScript in extensions. This allows us to offer extra functionality to content scripts that should not be accessible from web pages without worrying about web pages accessing it.