aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/directive.ngdoc
diff options
context:
space:
mode:
authorPascal Borreli2013-03-21 19:09:47 +0000
committerPawel Kozlowski2013-03-29 23:14:55 +0100
commit9480136d9f062ec4b8df0a35914b48c0d61e0002 (patch)
tree5d345c7be4f20b4ad688ede7ed6be4147a91cb45 /docs/content/guide/directive.ngdoc
parent4ae46814ff4e7c0bbcdbbefc0a97277283a84065 (diff)
downloadangular.js-9480136d9f062ec4b8df0a35914b48c0d61e0002.tar.bz2
docs(*): fixed typos
Diffstat (limited to 'docs/content/guide/directive.ngdoc')
-rw-r--r--docs/content/guide/directive.ngdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc
index 2bc46879..14970b65 100644
--- a/docs/content/guide/directive.ngdoc
+++ b/docs/content/guide/directive.ngdoc
@@ -72,7 +72,7 @@ here:
If an attribute with a binding is prefixed with `ngAttr` prefix (denormalized prefix: 'ng-attr-',
'ng:attr-') then during the compilation the prefix will be removed and the binding will be applied
to an unprefixed attribute. This allows binding to attributes that would otherwise be eagerly
-processed by browsers in their uncompilled form (e.g. `img[src]` or svg's `circle[cx]` attributes).
+processed by browsers in their uncompiled form (e.g. `img[src]` or svg's `circle[cx]` attributes).
For example, considering template:
@@ -280,7 +280,7 @@ In most cases you will not need such fine control and so the above can be simpli
different parts of this skeleton are explained in following sections. In this section we are
interested only in some of this skeleton.
-The first step in simplyfing the code is to rely on the default values. Therefore the above can be
+The first step in simplifying the code is to rely on the default values. Therefore the above can be
simplified as:
<pre>