Skip to content

Commit

Permalink
Merge pull request #245 from ember-learn/fix-code-fence-lang-typo
Browse files Browse the repository at this point in the history
fix: typo in code fence blocks
  • Loading branch information
IgnaceMaes authored Jul 7, 2024
2 parents 7ad1cc9 + a17fa71 commit a1e7316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/markdown/tutorial/part-1/04-component-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,13 +225,13 @@ git add app/components/nav-bar.hbs
Next, we will add our `<NavBar>` component to the top of each page:
```run:file:patch lang=habdlebars cwd=super-rentals filename=app/templates/about.hbs
```run:file:patch lang=handlebars cwd=super-rentals filename=app/templates/about.hbs
@@ -1 +1,2 @@
+<NavBar />
<Jumbo>
```
```run:file:patch lang=habdlebars cwd=super-rentals filename=app/templates/contact.hbs
```run:file:patch lang=handlebars cwd=super-rentals filename=app/templates/contact.hbs
@@ -1 +1,2 @@
+<NavBar />
<Jumbo>
Expand Down

0 comments on commit a1e7316

Please sign in to comment.