Skip to content

Commit de5b67d

Browse files
committed
Fixed typos in my last commit
1 parent 5936a33 commit de5b67d

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

graph/patterns/facets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In this solution, a child variant is identified by the presence of one or more f
1717

1818
## When to use this pattern
1919

20-
The facet pattern is useful when there is a number of variants and they are not mutually exclusive. It also makes it syntactically easier to query resources by using OData $filter expression because it doesn't require casting.
20+
The facets pattern is useful when there is a number of variants and they are not mutually exclusive. It also makes it syntactically easier to query resources by using the OData `$filter` expression because it doesn't require casting.
2121

2222
You can consider related patterns such as [type hierarchy](./subtypes.md) and [flat bag of properties](./flat-bag.md).
2323

@@ -27,7 +27,7 @@ When introducing a new facet, you need to ensure that the new facet doesn't chan
2727

2828
## Example
2929

30-
The driveItem resource represents a file, folder, image, or other item stored in a drive and is modeled by using entity type with multiple facets.
30+
The driveItem resource represents a file, folder, image, or other item stored in a drive and is modeled by using an entity type with multiple facets.
3131

3232
```XML
3333

graph/patterns/long-running-operations.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Microsoft Graph API Design Pattern
77
## Problem
88

99
The API design requires modeling operations on resources, which takes a long time
10-
to complete so that API clients don't need to wait and can continue doing other
10+
to complete, so that API clients don't need to wait and can continue doing other
1111
work while waiting for the final operation results. The client should be able to
1212
monitor the progress of the operation and have an ability to cancel it if
1313
needed.
@@ -48,7 +48,6 @@ presentation makes things simpler for our users and tooling chain.
4848

4949
In general, Microsoft Graph API guidelines for long running operations follow [Microsoft REST API
5050
Guidelines](https://github.com/microsoft/api-guidelines/blob/vNext/Guidelines.md#13-long-running-operations).
51-
5251
There are some deviations from the base guidelines where Microsoft Graph API standards require that you do one of the following:
5352

5453
- For the RELO pattern, you should return the Location header that indicates the location of the resource.
@@ -214,15 +213,15 @@ Retry-After: 30
214213
```
215214

216215
The client waits the recommended 30 seconds and then invokes another request to get
217-
the results of the operation.
216+
the results of the operation:
218217

219218
```
220219
GET https://graph.microsoft.com/v1.0/storage/operations/123
221220
```
222221

223222

224223
The server responds with a "status:succeeded" operation that includes the resource
225-
location.
224+
location:
226225

227226
```
228227
HTTP/1.1 200 OK

graph/patterns/operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If the operation doesn't have any side effects and MUST return a single instance
1717

1818
The operations pattern is well suited to use cases that cannot be modeled as a single HTTP method on a resource and require either multiple round trips to complete a single logical operation or produce one or multiple side effects.
1919

20-
You can consider related patterns such as [long running operations](./long-running-operations) and [change tracking](./change-tracking).
20+
You can consider related patterns such as [long running operations](./long-running-operations.md) and [change tracking](./change-tracking.md).
2121

2222
## Issues and considerations
2323

0 commit comments

Comments
 (0)