Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit df9c720

Browse files
josherickNarretz
authored andcommitted
docs(tutorial/step0): display list correctly
Two bullet points were indented causing the entire lines to be formatted as code by markdown. Decreased indentation level by one, as it seems this was not the intention. Closes #12035
1 parent 4fe141f commit df9c720

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/content/tutorial/step_00.ngdoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -91,22 +91,22 @@ being the element on which the `ngApp` directive was defined.
9191

9292
Nothing here {{'yet' + '!'}}
9393

94-
This line demonstrates two core features of Angular's templating capabilities:
94+
This line demonstrates two core features of Angular's templating capabilities:
9595

96-
* a binding, denoted by double-curlies `{{ }}`
97-
* a simple expression `'yet' + '!'` used in this binding.
96+
* a binding, denoted by double-curlies `{{ }}`
97+
* a simple expression `'yet' + '!'` used in this binding.
9898

99-
The binding tells Angular that it should evaluate an expression and insert the result into the
100-
DOM in place of the binding. Rather than a one-time insert, as we'll see in the next steps, a
101-
binding will result in efficient continuous updates whenever the result of the expression
102-
evaluation changes.
99+
The binding tells Angular that it should evaluate an expression and insert the result into the
100+
DOM in place of the binding. Rather than a one-time insert, as we'll see in the next steps, a
101+
binding will result in efficient continuous updates whenever the result of the expression
102+
evaluation changes.
103103

104-
{@link guide/expression Angular expression} is a JavaScript-like code snippet that is
105-
evaluated by Angular in the context of the current model scope, rather than within the scope of
106-
the global context (`window`).
104+
{@link guide/expression Angular expression} is a JavaScript-like code snippet that is
105+
evaluated by Angular in the context of the current model scope, rather than within the scope of
106+
the global context (`window`).
107107

108-
As expected, once this template is processed by Angular, the html page contains the text:
109-
"Nothing here yet!".
108+
As expected, once this template is processed by Angular, the html page contains the text:
109+
"Nothing here yet!".
110110

111111
## Bootstrapping AngularJS apps
112112

0 commit comments

Comments
 (0)