From 016becde672e9149ad3db44afe8319efed9fdbe4 Mon Sep 17 00:00:00 2001 From: Ben Cook Date: Sun, 5 May 2024 20:14:54 -0700 Subject: [PATCH] docs: fix a few typos --- docs/components/font.md | 2 +- docs/core/render.md | 2 +- docs/email-providers.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/components/font.md b/docs/components/font.md index c629581a..7e4289db 100644 --- a/docs/components/font.md +++ b/docs/components/font.md @@ -59,7 +59,7 @@ export interface FontProps { fallbackFontFamily: FallbackFont | FallbackFont[]; ``` -The fallback font family the system should you, if web fonts are not supported or the chosen font is not installed on the system. +The fallback font family the system should use, if web fonts are not supported or the chosen font is not installed on the system. ```ts fontFamily: string; diff --git a/docs/core/render.md b/docs/core/render.md index 25e8d748..efc33086 100644 --- a/docs/core/render.md +++ b/docs/core/render.md @@ -42,7 +42,7 @@ Minify the HTML for rendered templates plainText?: boolean | PlainTextOptions; ``` -If `true` or an `object`, renders the target email(s) to plain text. If the need to modify how the target is rendered to plain text, an `object` representing [`html-to-text` options](https://github.com/html-to-text/node-html-to-text/blob/master/packages/html-to-text/README.md#options) should be used. +If `true` or an `object`, renders the target email(s) to plain text. If you need to modify how the target is rendered to plain text, an `object` representing [`html-to-text` options](https://github.com/html-to-text/node-html-to-text/blob/master/packages/html-to-text/README.md#options) should be used. ```ts pretty?: boolean; diff --git a/docs/email-providers.md b/docs/email-providers.md index 4cb827f9..b274986b 100644 --- a/docs/email-providers.md +++ b/docs/email-providers.md @@ -7,7 +7,7 @@ description: 'Use JSX email with an Email Provider of your choice' Using JSX email with email providers or integrations is as simple as rendering the template you've already built. Rendering transforms your template from JSX/TSX into HTML, and optionally plain text. That's accomplished with the [jsx-email `render`](/docs/core/render) method. _We're going to assume that you've made it through the [Quick Start Guide](/docs/quick-start) before arriving here, and have an email template to use._ -While JSX email can be used with just about any emal provider that takes a string for content input, this page will demonstrate use with a few popular providers. +While JSX email can be used with just about any email provider that takes a string for content input, this page will demonstrate use with a few popular providers. ## AWS SES