summaryrefslogtreecommitdiff
path: root/examples/hackernews/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hackernews/src/components')
-rw-r--r--examples/hackernews/src/components/Comment.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hackernews/src/components/Comment.astro b/examples/hackernews/src/components/Comment.astro
index 8327e666c..6137f4e1d 100644
--- a/examples/hackernews/src/components/Comment.astro
+++ b/examples/hackernews/src/components/Comment.astro
@@ -14,7 +14,7 @@ const { comment } = Astro.props;
<li>
<div class="by">
<a href={`/users/${comment.user}`}>{comment.user}</a>{' '}
- {comment.time_ago} ago
+ {comment.time_ago}
</div>
<div class="text" set:html={comment.content} />
<Show when={comment.comments.length}>