Skip to content

Commit d194d4c

Browse files
docs: fix various typos in comments and documentation (#19878)
Fixes a few minor typos across the codebase (e.g. 'overriden' -> 'overridden', 're-use' -> 'reuse'). --------- Co-authored-by: Robin Malfait <malfait.robin@gmail.com>
1 parent ba66740 commit d194d4c

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3333

3434
### Fixed
3535

36-
- Canonicalization: improve canonicalizations for `tracking-*` utilities by preferring non-negative utilities (e.g. `-tracking-tighter``tracking-wider`) ([#19827](https://github.com/tailwindlabs/tailwindcss/pull/19827))
36+
- Canonicalization: improve canonicalization for `tracking-*` utilities by preferring non-negative utilities (e.g. `-tracking-tighter``tracking-wider`) ([#19827](https://github.com/tailwindlabs/tailwindcss/pull/19827))
3737
- Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) ([#19829](https://github.com/tailwindlabs/tailwindcss/pull/19829))
3838
- Ensure query params in imports are considered unique resources when using `@tailwindcss/webpack` ([#19723](https://github.com/tailwindlabs/tailwindcss/pull/19723))
3939
- Canonicalization: collapse arbitrary values into shorthand utilities (e.g. `px-[1.2rem] py-[1.2rem]``p-[1.2rem]`) ([#19837](https://github.com/tailwindlabs/tailwindcss/pull/19837))

crates/oxide/src/extractor/pre_processors/test-fixtures/haml/dst-17051.haml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@
7474
^^^^^^^^^^ ^^^^^^
7575
libraries, our components are designed to be fast, flexible, and easy to
7676
^^^ ^^^^^^^^^^ ^^^ ^^^^^^^^ ^^ ^^ ^^^ ^^^^ ^^
77-
use <i>directy</i> in Ruby on Rails!
78-
^^^ ^^^^^^^ ^^ ^^
77+
use <i>directly</i> in Ruby on Rails!
78+
^^^ ^^^^^^^^ ^^ ^^
7979
8080
= doc_example(css: "mt-8 lg:mt-0 lg:basis-3/5 h-44") do
8181
^^^ ^^^^ ^^^^^^^ ^^^^^^^^^^^^ ^^^^ ^^
@@ -101,7 +101,7 @@
101101
102102
%p.mt-2
103103
^^^^
104-
Utlize
104+
Utilize
105105
= daisy_link("HAML", "https://haml.info/", target: "_blank")
106106
^^^^^^
107107
so your views are simple, concise, and easy to understand.
@@ -119,8 +119,8 @@
119119
%p.mt-2
120120
^^^^
121121
:markdown
122-
**PLUS!** You can utlize filters like _Markdown_, CoffeeScript,
123-
^^^ ^^^^^^ ^^^^^^^ ^^^^
122+
**PLUS!** You can utilize filters like _Markdown_, CoffeeScript,
123+
^^^ ^^^^^^^ ^^^^^^^ ^^^^
124124
Textile, and many more!
125125
^^^ ^^^^ ^^^^^
126126

crates/oxide/src/extractor/pre_processors/test-fixtures/haml/src-17051.haml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
= daisy_link "DaisyUI", "https://daisyui.com/", target: "_blank"
4343
= daisy_link "TailwindCSS", "https://tailwindcss.com/", target: "_blank"
4444
libraries, our components are designed to be fast, flexible, and easy to
45-
use <i>directy</i> in Ruby on Rails!
45+
use <i>directly</i> in Ruby on Rails!
4646
4747
= doc_example(css: "mt-8 lg:mt-0 lg:basis-3/5 h-44") do
4848
.flex.flex-col.sm:flex-row.items-center.gap-4
@@ -58,7 +58,7 @@
5858
Simple, Concise Views
5959
6060
%p.mt-2
61-
Utlize
61+
Utilize
6262
= daisy_link("HAML", "https://haml.info/", target: "_blank")
6363
so your views are simple, concise, and easy to understand.
6464
@@ -69,7 +69,7 @@
6969
7070
%p.mt-2
7171
:markdown
72-
**PLUS!** You can utlize filters like _Markdown_, CoffeeScript,
72+
**PLUS!** You can utilize filters like _Markdown_, CoffeeScript,
7373
Textile, and many more!
7474
7575
.mt-8.xl:mt-0

packages/@tailwindcss-postcss/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ function tailwindcss(opts: PluginOptions = {}): AcceptedPlugin {
199199

200200
if (
201201
rebuildStrategy === 'full' &&
202-
// We can re-use the compiler if it was created during the
202+
// We can reuse the compiler if it was created during the
203203
// initial build. If it wasn't, we need to create a new one.
204204
!isInitialBuild
205205
) {

packages/@tailwindcss-vite/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export default function tailwindcss(opts: PluginOptions = {}): Plugin[] {
123123
) => Promise<string | undefined>
124124

125125
// There are cases where Environment API is available,
126-
// but `createResolver` is still overriden (for example astro v5)
126+
// but `createResolver` is still overridden (for example astro v5)
127127
//
128128
// Copied as-is from vite, because this function is not a part of public API
129129
//

0 commit comments

Comments
 (0)