Skip to content

Commit

Permalink
docs: replace double dashes with m-dashes, fix typos (#46174)
Browse files Browse the repository at this point in the history
Fixes #46173

PR Close #46174
  • Loading branch information
looshch authored and atscott committed Jun 1, 2022
1 parent 763c5f8 commit d982fa7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aio/content/guide/complex-animation-sequences.md
Expand Up @@ -37,7 +37,7 @@ The first argument of `query()` is a [css selector](https://developer.mozilla.or
|:--- |:--- |
| `:enter` <br /> `:leave` | For entering/leaving elements. |
| `:animating` | For elements currently animating. |
| `@*` <br /> `@triggerName` | For elements with any —or a specific—trigger. |
| `@*` <br /> `@triggerName` | For elements with any—or a specific—trigger. |
| `:self` | The animating element itself. |

<div class="callout is-helpful">
Expand Down
4 changes: 2 additions & 2 deletions aio/content/guide/what-is-angular.md
Expand Up @@ -82,13 +82,13 @@ When the application loads the component and its template, the user sees the fol

</code-example>

Notice the use of double curly braces--they instruct Angular to interpolate the contents within them.
Notice the use of double curly bracesthey instruct Angular to interpolate the contents within them.

Angular also supports property bindings, to help you set values for properties and attributes of HTML elements and pass values to your application's presentation logic.

<code-example format="html" language="html" path="what-is-angular/src/app/hello-world-bindings/hello-world-bindings.component.html" region="bindings"></code-example>

Notice the use of the square brackets--that syntax indicates that you're binding the property or attribute to a value in the component class.
Notice the use of the square bracketsthat syntax indicates that you're binding the property or attribute to a value in the component class.

Declare event listeners to listen for and respond to user actions such as keystrokes, mouse movements, clicks, and touches.
You declare an event listener by specifying the event name in parentheses:
Expand Down

0 comments on commit d982fa7

Please sign in to comment.