From 7a8ec31d2e8080269948fba98b29469086aac9a6 Mon Sep 17 00:00:00 2001 From: Alissa Nordmoe <68309135+ANordmoe@users.noreply.github.com> Date: Mon, 3 Mar 2025 11:43:12 -0500 Subject: [PATCH] Update 1046-template-tag-in-routes.md typo fixes --- text/1046-template-tag-in-routes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text/1046-template-tag-in-routes.md b/text/1046-template-tag-in-routes.md index 1166efbd9b..91dcc41c10 100644 --- a/text/1046-template-tag-in-routes.md +++ b/text/1046-template-tag-in-routes.md @@ -32,7 +32,7 @@ suite: Leave as is ## Summary -Allow `app/templates/*.hbs` to convert to `app/temlates/*.gjs`. +Allow `app/templates/*.hbs` to convert to `app/templates/*.gjs`. ## Motivation @@ -161,7 +161,7 @@ No new typescript-specific features are required. If you're authoring route temp This RFC was directly inspired by a first attempt at updating the Guides for Template Tag. It became immediately apparent that we can write _much_ clearer guides if we can teach all GJS, instead of a mix of GJS and HBS. -Starting at https://guides.emberjs.com/release/components/ when the first `application.hbs` file is introduced, we would use `.gjs` instead. In those opening examples that are empahsizing HTML, the only change to the content would be wrapping `` around the HTML. +Starting at https://guides.emberjs.com/release/components/ when the first `application.hbs` file is introduced, we would use `.gjs` instead. In those opening examples that are emphasizing HTML, the only change to the content would be wrapping `` around the HTML. Progressing to https://guides.emberjs.com/release/components/introducing-components/, learners extract their first component. It now becomes possible to do that within the same file. This allows teaching fewer things in a single step. First, people can learn what a component is. Second, it can be refactored into a separate file. We can avoid teaching anything about "pascal case" and naming rules, because everything just follows javascript naming rules.