Skip to content

Commit

Permalink
docs(guide/expression): replace tt by code
Browse files Browse the repository at this point in the history
Replaces <tt> elements with <code> in expressions guide. Looks identical
in Chromium

Closes angular#12437

Conflicts:
	docs/content/guide/expression.ngdoc
  • Loading branch information
Laisky authored and Narretz committed Aug 3, 2015
1 parent bc3dd03 commit 0955541
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/content/guide/expression.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ You can try evaluating different expressions here:
<ul>
<li ng-repeat="expr in exprs track by $index">
[ <a href="" ng-click="removeExp($index)">X</a> ]
<tt>{{expr}}</tt> => <span ng-bind="$parent.$eval(expr)"></span>
<code>{{expr}}</code> => <span ng-bind="$parent.$eval(expr)"></span>
</li>
</ul>
</div>
Expand Down Expand Up @@ -344,5 +344,4 @@ When using a directive that takes an expression:
<ul>
<li ng-repeat="item in ::items">{{item.name}};</li>
</ul>
```

```

0 comments on commit 0955541

Please sign in to comment.