Fixing typos "tamplate" -> "template"

I noticed three areas where the guide had the misspelling "tamplate."
This commit is contained in:
Samuel Morales, Jr 2019-08-23 18:05:59 -04:00 committed by GitHub
parent 090d42f103
commit 6a8b3e2174
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ prism_languages: [css]
```css
/* Areas */
grid-tamplate-areas:
grid-template-areas:
"header header"
"main aside"
"footer footer"; /* Grid-style */
@ -58,7 +58,7 @@ prism_languages: [css]
/* The above is the same as below long-hand */
grid-template-columns: 80% 20%;
grid-template-rows: auto 100vh 10rem;
grid-tamplate-areas:
grid-template-areas:
"header header"
"main aside"
"footer footer";
@ -155,7 +155,7 @@ prism_languages: [css]
/ 80% 20%; /* Which is again equivalent to below */
grid-template-columns: 80% 20%;
grid-template-rows: auto 100vh 10rem;
grid-tamplate-areas:
grid-template-areas:
"header header"
"main aside"
"footer footer";