Skip to content

Commit

Permalink
Improve <address> example
Browse files Browse the repository at this point in the history
Ref #54
  • Loading branch information
EvgenyOrekhov committed Jun 27, 2021
1 parent 0f044e8 commit 305a827
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion site/kitchen-sink.html
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
<h2>Content sectioning</h2>
<section id="address">
<h3>&lt;address&gt;</h3>
<address>Example</address>
<address>221B Baker Street</address>
</section>
<section id="article">
<h3>&lt;article&gt;</h3>
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
<h2>Content sectioning</h2>
<section id="address">
<h3>&lt;address&gt;</h3>
<address>Example</address>
<address>221B Baker Street</address>
</section>
<section id="article">
<h3>&lt;article&gt;</h3>
Expand Down
2 changes: 1 addition & 1 deletion src/stories/content-sectioning/address.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ export default {
title: "Content sectioning/<address>",
};

export const address = () => <address>Example</address>;
export const address = () => <address>221B Baker Street</address>;

address.storyName = "<address>";

0 comments on commit 305a827

Please sign in to comment.