Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Reformatted the type info displayed for method and event parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffposnick committed Sep 29, 2014
1 parent 4b885e2 commit f2ddfd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elements/core-doc-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ <h3 id="{{data.name}}.events">Events</h3>
<div class="params">
<p>Event details:</p>
<template repeat="{{param in event.params}}">
<p><code>{{param.name}}</code><span> <code>( {{param.type}} )</code></span></p>
<p><code>&lt;<em>{{param.type}}</em>&gt; {{param.name}}</code></p>
<p><span>{{param.description}}</span></p>
</template>
</div>
Expand All @@ -132,7 +132,7 @@ <h3 id="{{data.name}}.methods">Methods</h3>
<div class="params">
<p>Method parameters:</p>
<template repeat="{{param in method.params}}">
<p><code>{{param.name}}</code><span> <code>( {{param.type}} )</code></span></p>
<p><code>&lt;<em>{{param.type}}</em>&gt; {{param.name}}</code></p>
<p><span>{{param.description}}</span></p>
</template>
</div>
Expand Down

0 comments on commit f2ddfd9

Please sign in to comment.