From 2d96200a21f07c45d3c68d7d25ac9e032b39c68f Mon Sep 17 00:00:00 2001 From: Devon Rueckner Date: Tue, 14 Nov 2023 09:35:15 -0500 Subject: [PATCH] docs: minor phrasing updates (#3204) --- docs/guide/markdown.md | 2 +- docs/guide/ssr-compat.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/markdown.md b/docs/guide/markdown.md index 1541f11d..3756235d 100644 --- a/docs/guide/markdown.md +++ b/docs/guide/markdown.md @@ -18,7 +18,7 @@ This allows you to link to the heading as `#my-anchor` instead of the default `# ## Links -Both internal and external links gets special treatments. +Both internal and external links get special treatment. ### Internal Links diff --git a/docs/guide/ssr-compat.md b/docs/guide/ssr-compat.md index dfb0d7c7..aa8a5478 100644 --- a/docs/guide/ssr-compat.md +++ b/docs/guide/ssr-compat.md @@ -6,7 +6,7 @@ outline: deep VitePress pre-renders the app in Node.js during the production build, using Vue's Server-Side Rendering (SSR) capabilities. This means all custom code in theme components are subject to SSR Compatibility. -The [SSR section in official Vue docs](https://vuejs.org/guide/scaling-up/ssr.html) provides more context on what is SSR, the relationship between SSR / SSG, and common notes on writing SSR-friendly code. The rule of thumb is to only access browser / DOM APIs in `beforeMount` or `mounted` hooks of Vue components. +The [SSR section in official Vue docs](https://vuejs.org/guide/scaling-up/ssr.html) provides more context on what SSR is, the relationship between SSR / SSG, and common notes on writing SSR-friendly code. The rule of thumb is to only access browser / DOM APIs in `beforeMount` or `mounted` hooks of Vue components. ## ``