emmet: Fixed a typo in Emmet Cheatsheet (#1479)

Fixed a typo in emmet
section>p gives <section><p>...</p></section>
Earlier it was <section><pt>....</p></section>
This commit is contained in:
Pavitra Behre 2020-07-03 18:19:04 +05:30 committed by GitHub
parent 32fa7a6898
commit 865ad2cd98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ section>p+p+p
Expands to Expands to
```html ```html
<section> <section>
<pt></p> <p></p>
<p></p> <p></p>
<p></p> <p></p>
</section> </section>