Skip to content

Commit 273ced5

Browse files
committed
clarify
1 parent 658b198 commit 273ced5

File tree

8 files changed

+50
-50
lines changed

8 files changed

+50
-50
lines changed

plugins/postcss-logical-float-and-clear/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ instructions for:
5252

5353
### inlineDirection
5454

55-
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right` respectively which would match any latin language.
55+
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right`, which would match any latin language.
5656

57-
You might want to tweak these value if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
57+
**You should tweak this value so that it is specific to your language and writing mode.**
5858

5959
```js
6060
postcssLogicalFloatAndClear({

plugins/postcss-logical-float-and-clear/docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434

3535
### inlineDirection
3636

37-
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right` respectively which would match any latin language.
37+
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right`, which would match any latin language.
3838

39-
You might want to tweak these value if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
39+
**You should tweak this value so that it is specific to your language and writing mode.**
4040

4141
```js
4242
<exportName>({

plugins/postcss-logical-resize/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ instructions for:
5858

5959
### blockDirection & inlineDirection
6060

61-
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively which would match any latin language.
61+
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively, which would match any latin language.
6262

63-
You might want to tweak these values if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
63+
**You should tweak these values so that they are specific to your language and writing mode.**
6464

6565
```js
6666
postcssLogicalResize({

plugins/postcss-logical-resize/docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434

3535
### blockDirection & inlineDirection
3636

37-
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively which would match any latin language.
37+
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively, which would match any latin language.
3838

39-
You might want to tweak these values if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
39+
**You should tweak these values so that they are specific to your language and writing mode.**
4040

4141
```js
4242
<exportName>({

plugins/postcss-logical-viewport-units/README.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -49,39 +49,39 @@ instructions for:
4949

5050
## Options
5151

52-
### inlineDirection
52+
### inlineDirection
5353

54-
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right` respectively which would match any latin language.
54+
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right`, which would match any latin language.
5555

56-
You might want to tweak these value if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
56+
**You should tweak this value so that it is specific to your language and writing mode.**
5757

58-
```js
59-
postcssLogicalViewportUnits({
60-
inlineDirection: 'top-to-bottom'
61-
})
62-
```
58+
```js
59+
postcssLogicalViewportUnits({
60+
inlineDirection: 'top-to-bottom'
61+
})
62+
```
6363

64-
```pcss
65-
.foo {
64+
```pcss
65+
.foo {
6666
margin: 10vi 20vb;
6767
}
6868
69-
/* becomes */
69+
/* becomes */
7070
71-
.foo {
71+
.foo {
7272
margin: 10vh 20vw;
7373
margin: 10vi 20vb;
7474
}
75-
```
75+
```
7676

77-
Each direction must be one of the following:
77+
Each direction must be one of the following:
7878

79-
- `top-to-bottom`
80-
- `bottom-to-top`
81-
- `left-to-right`
82-
- `right-to-left`
79+
- `top-to-bottom`
80+
- `bottom-to-top`
81+
- `left-to-right`
82+
- `right-to-left`
8383

84-
Please do note that transformations won't do anything particular for `right-to-left` or `bottom-to-top`.
84+
Please do note that transformations won't do anything particular for `right-to-left` or `bottom-to-top`.
8585

8686
### preserve
8787

plugins/postcss-logical-viewport-units/docs/README.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -32,34 +32,34 @@
3232

3333
## Options
3434

35-
### inlineDirection
35+
### inlineDirection
3636

37-
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right` respectively which would match any latin language.
37+
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right`, which would match any latin language.
3838

39-
You might want to tweak these value if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
39+
**You should tweak this value so that it is specific to your language and writing mode.**
4040

41-
```js
42-
<exportName>({
43-
inlineDirection: 'top-to-bottom'
44-
})
45-
```
41+
```js
42+
<exportName>({
43+
inlineDirection: 'top-to-bottom'
44+
})
45+
```
4646

47-
```pcss
48-
<example.css>
47+
```pcss
48+
<example.css>
4949
50-
/* becomes */
50+
/* becomes */
5151
52-
<example.vertical.expect.css>
53-
```
52+
<example.vertical.expect.css>
53+
```
5454

55-
Each direction must be one of the following:
55+
Each direction must be one of the following:
5656

57-
- `top-to-bottom`
58-
- `bottom-to-top`
59-
- `left-to-right`
60-
- `right-to-left`
57+
- `top-to-bottom`
58+
- `bottom-to-top`
59+
- `left-to-right`
60+
- `right-to-left`
6161

62-
Please do note that transformations won't do anything particular for `right-to-left` or `bottom-to-top`.
62+
Please do note that transformations won't do anything particular for `right-to-left` or `bottom-to-top`.
6363

6464
### preserve
6565

plugins/postcss-logical/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ instructions for:
6666

6767
### blockDirection & inlineDirection
6868

69-
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively which would match any latin language.
69+
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively, which would match any latin language.
7070

71-
You might want to tweak these values if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
71+
**You should tweak these values so that they are specific to your language and writing mode.**
7272

7373
```js
7474
postcssLogical({

plugins/postcss-logical/docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434

3535
### blockDirection & inlineDirection
3636

37-
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively which would match any latin language.
37+
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively, which would match any latin language.
3838

39-
You might want to tweak these values if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
39+
**You should tweak these values so that they are specific to your language and writing mode.**
4040

4141
```js
4242
<exportName>({

0 commit comments

Comments
 (0)