Skip to content

Commit 41e631b

Browse files
committed
fix indefinite articles
1 parent 90af55e commit 41e631b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tutorials/mastodon-toot-embed/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Our aim will be to create a `<toot-embed>` element will allow users to share and
1313
"toots") from the Mastodon social network, and will include features such as the ability to show or hide the user handle
1414
and avatar image, as well as the option to customize the appearance of the toot.
1515

16-
Here's a example of a Mastodon toot embed. We'll be making something similar.
16+
Here's an example of a Mastodon toot embed. We'll be making something similar.
1717

1818
<iframe src="https://fosstodon.org/@webcomponentsguide/109660552894549193/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width="400" allowfullscreen="allowfullscreen"></iframe><script src="https://fosstodon.org/embed.js" async="async"></script>
1919

tutorials/mastodon-toot-embed/properties-and-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class TootEmbedElement extends HTMLElement {
5757
TootEmbedElement.define()
5858
```
5959

60-
And we can persist the value to a attribute using `setAttribute`:
60+
And we can persist the value to an attribute using `setAttribute`:
6161

6262
```js
6363
class TootEmbedElement extends HTMLElement {

0 commit comments

Comments
 (0)