Skip to content

Commit 9b97518

Browse files
authored
Merge pull request #39 from JayBizzle/master
Fix apostrophes
2 parents 0b9594f + 2024657 commit 9b97518

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

docs/source/docs/adding-new-utilities.blade.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ If you'd like to create responsive versions of your own utilities based on the b
8484
}
8585
```
8686

87-
Tailwind will intelligently group the responsive versions into it's existing media queries which are output at the very end of the stylesheet. This ensures that any responsive utilities will always take precedence over unprefixed utilities.
87+
Tailwind will intelligently group the responsive versions into its existing media queries which are output at the very end of the stylesheet. This ensures that any responsive utilities will always take precedence over unprefixed utilities.
8888

8989
The above code would generate CSS that looks something like this:
9090

docs/source/docs/flexbox-flex-grow-shrink.blade.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ title: "Flex, Grow, & Shrink - Flexbox"
2929
<tr>
3030
<td class="p-2 border-t border-smoke font-mono text-xs text-purple-dark">.flex-initial</td>
3131
<td class="p-2 border-t border-smoke font-mono text-xs text-blue-dark">flex: initial;</td>
32-
<td class="p-2 border-t border-smoke text-sm text-grey-darker">Allow a flex item to shrink but not grow, taking into account it's initial size.</td>
32+
<td class="p-2 border-t border-smoke text-sm text-grey-darker">Allow a flex item to shrink but not grow, taking into account its initial size.</td>
3333
</tr>
3434
<tr>
3535
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.flex-1</td>
3636
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">flex: 1;</td>
37-
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow a flex item to grow and shrink as needed, ignoring it's initial size.</td>
37+
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow a flex item to grow and shrink as needed, ignoring its initial size.</td>
3838
</tr>
3939
<tr>
4040
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.flex-auto</td>
4141
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">flex: auto;</td>
42-
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow a flex item to grow and shrink, taking into account it's initial size.</td>
42+
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow a flex item to grow and shrink, taking into account its initial size.</td>
4343
</tr>
4444
<tr>
4545
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.flex-none</td>
@@ -72,7 +72,7 @@ title: "Flex, Grow, & Shrink - Flexbox"
7272

7373
### Initial <span class="ml-2 font-semibold text-slate-light text-sm uppercase tracking-wide">Default</span>
7474

75-
Use `.flex-initial` to allow a flex item to shrink but not grow, taking into account it's initial size:
75+
Use `.flex-initial` to allow a flex item to shrink but not grow, taking into account its initial size:
7676

7777
@component('_partials.code-sample')
7878
<p class="text-sm text-slate-light mb-1">Items don't grow when there's extra space</p>
@@ -124,7 +124,7 @@ Use `.flex-initial` to allow a flex item to shrink but not grow, taking into acc
124124

125125
### Flex 1
126126

127-
Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring it's initial size:
127+
Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring its initial size:
128128

129129
@component('_partials.code-sample')
130130
<p class="text-sm text-slate-light mb-1">Default behavior</p>
@@ -169,7 +169,7 @@ Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring it's i
169169

170170
### Auto
171171

172-
Use `.flex-auto` to allow a flex item to grow and shrink, taking into account it's initial size:
172+
Use `.flex-auto` to allow a flex item to grow and shrink, taking into account its initial size:
173173

174174
@component('_partials.code-sample')
175175
<p class="text-sm text-slate-light mb-1">Default behavior</p>
@@ -294,7 +294,7 @@ Use `.flex-no-shrink` to prevent a flex item from shrinking:
294294
Item that can shrink if needed
295295
</div>
296296
<div class="flex-no-shrink text-slate-dark text-center bg-smoke-dark px-4 py-2 m-2">
297-
Item that cannot shrink below it's initial size
297+
Item that cannot shrink below its initial size
298298
</div>
299299
<div class="flex-shrink text-slate text-center bg-smoke px-4 py-2 m-2">
300300
Item that can shrink if needed

docs/source/docs/flexbox.blade.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ Use `.content-around` to distribute lines in a flex container such that there is
407407

408408
### 1
409409

410-
Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring it's initial size:
410+
Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring its initial size:
411411

412412
@component('_partials.code-sample')
413413
<p class="text-sm text-slate-light mb-1">Default behavior</p>
@@ -452,7 +452,7 @@ Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring it's i
452452

453453
### Auto
454454

455-
Use `.flex-auto` to allow a flex item to grow and shrink, taking into account it's initial size:
455+
Use `.flex-auto` to allow a flex item to grow and shrink, taking into account its initial size:
456456

457457
@component('_partials.code-sample')
458458
<p class="text-sm text-slate-light mb-1">Default behavior</p>
@@ -515,7 +515,7 @@ Use `.flex-none` to prevent a flex item from growing or shrinking:
515515

516516
### Initial
517517

518-
Use `.flex-initial` to allow a flex item to shrink but not grow, taking into account it's initial size *(this is also the default behavior)*:
518+
Use `.flex-initial` to allow a flex item to shrink but not grow, taking into account its initial size *(this is also the default behavior)*:
519519

520520
@component('_partials.code-sample')
521521
<p class="text-sm text-slate-light mb-1">Items don't grow when there's extra space</p>
@@ -637,7 +637,7 @@ Use `.flex-no-shrink` to prevent a flex item from shrinking:
637637
Item that can shrink if needed
638638
</div>
639639
<div class="flex-no-shrink text-slate-dark text-center bg-smoke-dark px-4 py-2 m-2">
640-
Item that cannot shrink below it's initial size
640+
Item that cannot shrink below its initial size
641641
</div>
642642
<div class="flex-shrink text-slate text-center bg-smoke px-4 py-2 m-2">
643643
Item that can shrink if needed

docs/source/docs/visibility.blade.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Use `.visible` to make an element visible. This will typically be used as a rese
5757

5858
### Invisible
5959

60-
Use `.invisible` to hide an element, but still maintain it's space.
60+
Use `.invisible` to hide an element, but still maintain its space.
6161

6262
@component('_partials.code-sample', ['class' => 'flex justify-center'])
6363
<div class="invisible bg-smoke w-24 h-24 rounded-full"></div>

0 commit comments

Comments
 (0)