Merge pull request #1182 from smoralesjr/patch-1

Fixing typos "tamplate" -> "template"
This commit is contained in:
Rico Sta. Cruz 2019-09-01 16:32:43 +10:00 committed by GitHub
commit 013be6f383
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";