Fix typos in Transition docs

This commit is contained in:
Ryan Gossiaux
2023-06-14 18:37:13 -07:00
parent 019e652cab
commit c745327cb7
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ There are a few reasons you may choose to use `Transition`:
- You want to use CSS class-based transitions (perhaps via Tailwind CSS classes, perhaps not) instead of using Svelte's transition engine. In that case this component can help, especially by helping coordinate multiple transitions (one of the main features of the component).
Since this component works is based on CSS class, we'll be using Tailwind CSS transition classes for the examples. However, you are free to use your own transition classes, as long as they are globally available.
Since the way this component works is based on CSS classes, we'll be using Tailwind CSS transition classes for the examples. However, you are free to use your own transition classes, as long as they are globally available.
## Basic example