Skip to content

Commit

Permalink
docs: fix a few typos (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
blx committed May 6, 2024
1 parent 082c217 commit f77ece7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/components/font.md
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion docs/core/render.md
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion docs/email-providers.md
Expand Up @@ -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

Expand Down

0 comments on commit f77ece7

Please sign in to comment.