Skip to content

Commit 849b306

Browse files
committed
Fix grammar in compound tax rate descriptions
1 parent 1a81bbb commit 849b306

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

source/includes/wp-api-v3/_order-refunds.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The order refunds API allows you to create, view, and delete individual refunds,
6464
| `rate_code` | string | Tax rate code. <i class="label label-info">read-only</i> |
6565
| `rate_id` | integer | Tax rate ID. <i class="label label-info">read-only</i> |
6666
| `label` | string | Tax rate label. <i class="label label-info">read-only</i> |
67-
| `compound` | boolean | Show if is a compound tax rate. <i class="label label-info">read-only</i> |
67+
| `compound` | boolean | Whether or not this is a compound tax rate. <i class="label label-info">read-only</i> |
6868
| `tax_total` | string | Tax total (not including shipping taxes). <i class="label label-info">read-only</i> |
6969
| `shipping_tax_total` | string | Shipping tax total. <i class="label label-info">read-only</i> |
7070
| `meta_data` | array | Meta data. See [Order refund - Meta data properties](#order-refund-meta-data-properties) |

source/includes/wp-api-v3/_orders.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ The orders API allows you to create, view, update, and delete individual, or a b
114114
| `rate_code` | string | Tax rate code. <i class="label label-info">read-only</i> |
115115
| `rate_id` | integer | Tax rate ID. <i class="label label-info">read-only</i> |
116116
| `label` | string | Tax rate label. <i class="label label-info">read-only</i> |
117-
| `compound` | boolean | Show if is a compound tax rate. <i class="label label-info">read-only</i> |
117+
| `compound` | boolean | Whether or not this is a compound tax rate. <i class="label label-info">read-only</i> |
118118
| `tax_total` | string | Tax total (not including shipping taxes). <i class="label label-info">read-only</i> |
119119
| `shipping_tax_total` | string | Shipping tax total. <i class="label label-info">read-only</i> |
120120
| `meta_data` | array | Meta data. See [Order - Meta data properties](#order-meta-data-properties) |

source/includes/wp-api-v3/_taxes.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ The taxes API allows you to create, view, update, and delete individual tax rate
44

55
## Tax rate properties ##
66

7-
| Attribute | Type | Description |
8-
|------------|---------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
9-
| `id` | integer | Unique identifier for the resource. <i class="label label-info">read-only</i> |
10-
| `country` | string | Country ISO 3166 code. See [ISO 3166 Codes (Countries)](http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html) for more details |
11-
| `state` | string | State code. |
12-
| `postcode` | string | Postcode/ZIP, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, `postcodes` should be used instead. |
13-
| `city` | string | City name, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, `postcodes` should be used instead. |
14-
| `postcodes`| string[] | Postcodes/ZIPs. Introduced in WooCommerce 5.3. |
15-
| `cities` | string[] | City names. Introduced in WooCommerce 5.3. |
16-
| `rate` | string | Tax rate. |
17-
| `name` | string | Tax rate name. |
7+
| Attribute | Type | Description |
8+
|------------|---------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
9+
| `id` | integer | Unique identifier for the resource. <i class="label label-info">read-only</i> |
10+
| `country` | string | Country ISO 3166 code. See [ISO 3166 Codes (Countries)](http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html) for more details |
11+
| `state` | string | State code. |
12+
| `postcode` | string | Postcode/ZIP, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, `postcodes` should be used instead. |
13+
| `city` | string | City name, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, `postcodes` should be used instead. |
14+
| `postcodes`| string[] | Postcodes/ZIPs. Introduced in WooCommerce 5.3. |
15+
| `cities` | string[] | City names. Introduced in WooCommerce 5.3. |
16+
| `rate` | string | Tax rate. |
17+
| `name` | string | Tax rate name. |
1818
| `priority` | integer | Tax priority. Only 1 matching rate per priority will be used. To define multiple tax rates for a single area you need to specify a different priority per rate. Default is `1`. |
19-
| `compound` | boolean | Whether or not this is a compound rate. Compound tax rates are applied on top of other tax rates. Default is `false`. |
20-
| `shipping` | boolean | Whether or not this tax rate also gets applied to shipping. Default is `true`. |
21-
| `order` | integer | Indicates the order that will appear in queries. |
22-
| `class` | string | Tax class. Default is `standard`. |
19+
| `compound` | boolean | Whether or not this is a compound tax rate. Compound rates are applied on top of other tax rates. Default is `false`. |
20+
| `shipping` | boolean | Whether or not this tax rate also gets applied to shipping. Default is `true`. |
21+
| `order` | integer | Indicates the order that will appear in queries. |
22+
| `class` | string | Tax class. Default is `standard`. |
2323

2424
## Create a tax rate ##
2525

0 commit comments

Comments
 (0)