Skip to content

Commit 9441f19

Browse files
committed
fixed wording for parent interfaces
extends instead of implements fixes #3
1 parent c9c3bf8 commit 9441f19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/html/views/type.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<tr><th>Implements</th><td><?= $renderer->renderInterfaces($type->interfaces) ?></td></tr>
5656
<?php endif; ?>
5757
<?php if ($type instanceof InterfaceDoc && !empty($type->parentInterfaces)): ?>
58-
<tr><th>Implements</th><td><?= $renderer->renderInterfaces($type->parentInterfaces) ?></td></tr>
58+
<tr><th>Extends</th><td><?= $renderer->renderInterfaces($type->parentInterfaces) ?></td></tr>
5959
<?php endif; ?>
6060
<?php if (!($type instanceof InterfaceDoc) && !empty($type->traits)): ?>
6161
<tr><th>Uses Traits</th><td><?= $renderer->renderTraits($type->traits) ?></td></tr>

0 commit comments

Comments
 (0)