From b55cbd89342d1ed867529469e9fb4c9dc1d38adc Mon Sep 17 00:00:00 2001 From: btoo <8883465+btoo@users.noreply.github.com> Date: Wed, 22 May 2024 12:34:24 -0700 Subject: [PATCH 1/2] format "The `to` prop" in async-animations.mdx --- docs/app/routes/docs.advanced.async-animations.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/app/routes/docs.advanced.async-animations.mdx b/docs/app/routes/docs.advanced.async-animations.mdx index 751ba3a9d6..7d364bcaf4 100644 --- a/docs/app/routes/docs.advanced.async-animations.mdx +++ b/docs/app/routes/docs.advanced.async-animations.mdx @@ -59,7 +59,7 @@ export default function MyComponent() { } ``` -## The to prop +## The `to` prop If you've read any of the `component` pages, you'll know we accept a `to` prop, it's typically used as an object, but alternatively, you can also use an array (chaining the animations) or a function (writing an animation script). From ab4f7dd6fcdde6360ae8f4465c677a260e65d8e9 Mon Sep 17 00:00:00 2001 From: btoo <8883465+btoo@users.noreply.github.com> Date: Wed, 22 May 2024 12:37:45 -0700 Subject: [PATCH 2/2] fix spelling of "targetting"/"targetted" in targets.mdx --- docs/app/routes/docs.concepts.targets.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/app/routes/docs.concepts.targets.mdx b/docs/app/routes/docs.concepts.targets.mdx index d7e9711019..f4c8e90643 100644 --- a/docs/app/routes/docs.concepts.targets.mdx +++ b/docs/app/routes/docs.concepts.targets.mdx @@ -20,7 +20,7 @@ export const meta = formatFrontmatterToRemixMeta(frontmatter) ## What is a target? When a target is discussed it is sometimes in reference to the platform, e.g. you create a client side react application -chances are it's targetted at the browser. However, if you write a server-side application then you're targetting node. +chances are it's targeted at the browser. However, if you write a server-side application then you're targeting node. Whilst `react-spring` does support the targets `web` and `native` and _can_ be server-side rendered. This is not the type of target we're referring to.