Skip to content

Commit ea0f959

Browse files
committed
copyedits
1 parent b756533 commit ea0f959

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/api-management/retry-policy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ The `retry` policy executes its child policies once and then retries their execu
3636

3737
| Attribute | Description | Required | Default |
3838
| ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ------- |
39-
| condition | Specifies whether retries should be stopped (`false`) or continued (`true`). Policy expressions are allowed. | Yes | N/A |
39+
| condition | Boolean. Specifies whether retries should be stopped (`false`) or continued (`true`). Policy expressions are allowed. | Yes | N/A |
4040
| count | A positive number specifying the maximum number of retries to attempt. Policy expressions are allowed. | Yes | N/A |
4141
| interval | A positive number in seconds specifying the wait interval between the retry attempts. Policy expressions are allowed. | Yes | N/A |
4242
| max-interval | A positive number in seconds specifying the maximum wait interval between the retry attempts. It is used to implement an exponential retry algorithm. Policy expressions are allowed. | No | N/A |
4343
| delta | A positive number in seconds specifying the wait interval increment. It is used to implement the linear and exponential retry algorithms. Policy expressions are allowed. | No | N/A |
44-
| first-fast-retry | If set to `true` , the first retry attempt is performed immediately. Policy expressions are allowed. | No | `false` |
44+
| first-fast-retry | Boolean. If set to `true`, the first retry attempt is performed immediately. Policy expressions are allowed. | No | `false` |
4545

4646
## Retry wait times
4747

articles/api-management/rewrite-uri-policy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `rewrite-uri` policy converts a request URL from its public form to the form
1818

1919
- Request URL - `http://api.example.com/v2/US/hardware/storenumber&ordernumber?City&State`
2020

21-
This policy can be used when a human and/or browser-friendly URL should be transformed into the URL format expected by the web service. This policy only needs to be applied when exposing an alternative URL format, such as clean URLs, RESTful URLs, user-friendly URLs or SEO-friendly URLs that are purely structural URLs that do not contain a query string and instead contain only the path of the resource (after the scheme and the authority). This is often done for aesthetic, usability, or search engine optimization (SEO) purposes.
21+
This policy can be used when a human and/or browser-friendly URL should be transformed into the URL format expected by the web service. This policy only needs to be applied when exposing an alternative URL format, such as clean URLs, RESTful URLs, user-friendly URLs or SEO-friendly URLs that are purely structural URLs that don't contain a query string and instead contain only the path of the resource (after the scheme and the authority). This is often done for aesthetic, usability, or search engine optimization (SEO) purposes.
2222

2323
[!INCLUDE [api-management-policy-generic-alert](../../includes/api-management-policy-generic-alert.md)]
2424

@@ -33,7 +33,7 @@ This policy can be used when a human and/or browser-friendly URL should be trans
3333

3434
|Name|Description|Required|Default|
3535
|----------|-----------------|--------------|-------------|
36-
|template|The actual web service URL with any query string parameters. Policy expressions are allowed. When using expressions, the whole value must be an expression. |Yes|N/A|
36+
|template|The actual web service URL with any query string parameters. Policy expressions are allowed. When expressions are used, the whole value must be an expression. |Yes|N/A|
3737
|copy-unmatched-params|Specifies whether query parameters in the incoming request not present in the original URL template are added to the URL defined by the rewrite template. Policy expressions are allowed.|No|`true`|
3838

3939
## Usage
@@ -44,7 +44,7 @@ This policy can be used when a human and/or browser-friendly URL should be trans
4444

4545
### Usage notes
4646

47-
You can only add query string parameters using the policy. You cannot add extra template path parameters in the rewrite URL.
47+
You can only add query string parameters using the policy. You can't add extra template path parameters in the rewrite URL.
4848

4949
## Example
5050

0 commit comments

Comments
 (0)