Skip to content

Commit

Permalink
build(dgeni): capital letter for selector (#4690)
Browse files Browse the repository at this point in the history
* The label for the `selectors` should start with a capital letter. Similar as for the `Export as` label.
  • Loading branch information
devversion authored and tinayuangao committed May 22, 2017
1 parent 7f4516a commit d1b5e86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/dgeni/templates/class.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ <h4 class="docs-api-h4 docs-api-class-name">

{%- if class.directiveSelectors -%}
<div class="docs-api-directive-selectors">
<span class="docs-api-class-selector-label">selector:</span>
{% for s in class.directiveSelectors %}
<span class="docs-api-class-selector-name">{$ s $}</span>
<span class="docs-api-class-selector-label">Selector:</span>
{% for selector in class.directiveSelectors %}
<span class="docs-api-class-selector-name">{$ selector $}</span>
{% endfor %}
</div>
{%- endif -%}
Expand Down

0 comments on commit d1b5e86

Please sign in to comment.