summaryrefslogtreecommitdiff
path: root/examples/blog/src
diff options
context:
space:
mode:
authorGravatar Viktor Szépe <viktor@szepe.net> 2024-05-01 07:56:38 +0200
committerGravatar GitHub <noreply@github.com> 2024-05-01 13:56:38 +0800
commita146cf1012483b030a8146fb3035801f3c0c9099 (patch)
treeddececa7326f41bbcdf4e44b7205f6a43e4e8efa /examples/blog/src
parent1b7ed7a31a3a7a244440562a8e16aac1617c0114 (diff)
downloadastro-a146cf1012483b030a8146fb3035801f3c0c9099.tar.gz
astro-a146cf1012483b030a8146fb3035801f3c0c9099.tar.zst
astro-a146cf1012483b030a8146fb3035801f3c0c9099.zip
Fix typos (#10923)
Diffstat (limited to 'examples/blog/src')
-rw-r--r--examples/blog/src/content/blog/markdown-style-guide.md2
-rw-r--r--examples/blog/src/styles/global.css2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/blog/src/content/blog/markdown-style-guide.md b/examples/blog/src/content/blog/markdown-style-guide.md
index 877ec2f4a..a72853438 100644
--- a/examples/blog/src/content/blog/markdown-style-guide.md
+++ b/examples/blog/src/content/blog/markdown-style-guide.md
@@ -95,7 +95,7 @@ The blockquote element represents content that is quoted from another source, op
#### Syntax
-we can use 3 backticks ``` in new line and write snippet and close with 3 backticks on new line and to highlight language specific syntac, write one word of language name after first 3 backticks, for eg. html, javascript, css, markdown, typescript, txt, bash
+we can use 3 backticks ``` in new line and write snippet and close with 3 backticks on new line and to highlight language specific syntax, write one word of language name after first 3 backticks, for eg. html, javascript, css, markdown, typescript, txt, bash
````markdown
```html
diff --git a/examples/blog/src/styles/global.css b/examples/blog/src/styles/global.css
index fe9ecf0b8..bbb0c3015 100644
--- a/examples/blog/src/styles/global.css
+++ b/examples/blog/src/styles/global.css
@@ -149,6 +149,6 @@ hr {
clip: rect(1px, 1px, 1px, 1px);
/* modern browsers, clip-path works inwards from each corner */
clip-path: inset(50%);
- /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
+ /* added line to stop words getting smushed together (as they go onto separate lines and some screen readers do not understand line feeds as a space */
white-space: nowrap;
}