Skip to content

Commit

Permalink
Merge pull request #860 from qunm00/fix-curly-braces-in-metadata-desc…
Browse files Browse the repository at this point in the history
…ription

replace curly braces in unicode with glyph char
  • Loading branch information
2can committed Aug 9, 2023
2 parents 5ce034a + 0d03e31 commit fb9d4c1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions docs/api-reference/miscellaneous/scalars/metadata.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ Metadata is a map of key-value pairs, both keys and values are `String`.

Example:

```
{
"key1": "value1",
"key2": "value2"
}
```json
{
"key1": "value1",
"key2": "value2"
}
```

```graphql
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ taxCountryConfigurationUpdate(
#### [<code style={{ fontWeight: 'normal' }}>taxCountryConfigurationUpdate.<b>updateTaxClassRates</b></code>](#)<Bullet />[`[TaxClassRateInput!]!`](../../../api-reference/taxes/inputs/tax-class-rate-input) <Badge class="badge badge--secondary" text="non-null"/> <Badge class="badge badge--secondary" text="input"/>

> List of tax rates per tax class to update. When `&#x007B;taxClass: id, rate: null`&#x007D; is passed, it deletes the rate object for given taxClass ID. When `&#x007B;rate: Int&#x007D;` is passed without a tax class, it updates the default tax class for this country.
> List of tax rates per tax class to update. When `{taxClass: id, rate: null}` is passed, it deletes the rate object for given taxClass ID. When `{rate: Int}` is passed without a tax class, it updates the default tax class for this country.
### Type

Expand Down
10 changes: 5 additions & 5 deletions docs/api-storefront/miscellaneous/scalars/metadata.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ Metadata is a map of key-value pairs, both keys and values are `String`.

Example:

```
&#x007B;
"key1": "value1",
"key2": "value2"
&#x007D;
```json
{
"key1": "value1",
"key2": "value2"
}
```

```graphql
Expand Down

1 comment on commit fb9d4c1

@vercel
Copy link

@vercel vercel bot commented on fb9d4c1 Aug 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.