Skip to content

Commit 0d7c3b9

Browse files
Merge pull request #469 from pndewit/master
docs(typo): Fix typo
2 parents e976f69 + 3a169fb commit 0d7c3b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

current/en-us/4. binding/1. basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Aurelia supports binding HTML and SVG attributes to JavaScript expressions. Attr
1818
* `to-view` / `one-way`: flows data one direction, from the view-model to the view.
1919
* `from-view`: flows data one direction, from the view to the view-model.
2020
* `two-way`: flows data both ways, from view-model to view and from view to view-model.
21-
* `bind`: automically chooses the binding mode. Uses two-way binding for form controls and to-view binding for almost everything else.
21+
* `bind`: automatically chooses the binding mode. Uses two-way binding for form controls and to-view binding for almost everything else.
2222
* `expression`: a JavaScript expression.
2323

2424
Typically you'll use the `bind` command since it does what you intend most of the time. Consider using `one-time` in performance critical situations where the data never changes because it skips the overhead of observing the view-model for changes. Below are a few examples.

0 commit comments

Comments
 (0)