diff options
| author | Sagie Maoz | 2014-03-13 14:47:13 +0200 | 
|---|---|---|
| committer | Vojta Jina | 2014-03-14 11:50:37 -0700 | 
| commit | dfdb72559f4a4384f1f47196d224e929f759256f (patch) | |
| tree | cfb6ce2c896e13f507db6b7f9fb5b566f0294354 | |
| parent | d69793d93c9b946c904bafed12983ef4459c4cd6 (diff) | |
| download | angular.js-dfdb72559f4a4384f1f47196d224e929f759256f.tar.bz2 | |
docs(guide/compiler): add missing closing parenthesis
| -rw-r--r-- | docs/content/guide/compiler.ngdoc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/content/guide/compiler.ngdoc b/docs/content/guide/compiler.ngdoc index d4d77498..44151a4c 100644 --- a/docs/content/guide/compiler.ngdoc +++ b/docs/content/guide/compiler.ngdoc @@ -325,7 +325,7 @@ This will not render properly, unless we do some scope magic.  The first issue we have to solve is that the dialog box template expects `title` to be defined.  But we would like the template's scope property `title` to be the result of interpolating the -`<dialog>` element's `title` attribute (i.e. `"Hello {{username}}"`. Furthermore, the buttons expect +`<dialog>` element's `title` attribute (i.e. `"Hello {{username}}"`). Furthermore, the buttons expect  the `onOk` and `onCancel` functions to be present in the scope. This limits the usefulness of the  widget. To solve the mapping issue we use the `locals` to create local variables which the template  expects as follows: | 
