Skip to content

Commit 58f6218

Browse files
committed
Fix typos
1 parent 07a1e42 commit 58f6218

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

azure/Guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Evolutionary changes do not require prior approval (but still need a version bum
172172

173173
#### Changing the API without changing the version
174174

175-
Because the API version represents a contract that a developer can rely on when generating SDKs to communicate with the service, there are a limited set of situations where changing the API is permissable without a version bump. The only changes universally allowed:
175+
Because the API version represents a contract that a developer can rely on when generating SDKs to communicate with the service, there are a limited set of situations where changing the API is permissible without a version bump. The only changes universally allowed:
176176

177177
1. Adding a new (optional) value to an extensible enum.
178178

graph/dictionary/client-guidance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ SDKs need to provide support for dictionary types so SDK consummers get a deligh
4242

4343
- Dictionaries support OData annotations (values prefixed with **@OData**), such annotations should not be inserted directly in the dictionary but rather in the additional properties manager.
4444
- Dictionary types can inherit another dictionary type, this inheritance must be respected.
45-
- Dictionary values can be of union types, if the target langauge doesn't support union types, a wrapper type should be generated as backward compatible solution with properties for each type of the union.
45+
- Dictionary values can be of union types, if the target language doesn't support union types, a wrapper type should be generated as backward compatible solution with properties for each type of the union.
4646

4747
### Dotnet
4848

graph/dictionary/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Before using a dictionary type in your API definition make sure your scenario fi
2222

2323
## JSON payload example
2424

25-
The following example illustrates the resulting JSON for a property of dictionary type. The parent object has been ommitted for brievety.
25+
The following example illustrates the resulting JSON for a property of dictionary type. The parent object has been omitted for brievety.
2626

2727
```json
2828
{
@@ -48,7 +48,7 @@ In this set of examples we're modeling a **roles** property of dictionary type o
4848
GET https://graph.microsoft.com/v1.0/users/10/roles/author
4949
```
5050

51-
Reponse:
51+
Response:
5252

5353
```json
5454
{
@@ -62,7 +62,7 @@ Reponse:
6262
GET https://graph.microsoft.com/v1.0/users/10/roles
6363
```
6464

65-
Reponse:
65+
Response:
6666

6767
```json
6868
{
@@ -84,7 +84,7 @@ Reponse:
8484
GET https://graph.microsoft.com/v1.0/users/10
8585
```
8686

87-
Reponse:
87+
Response:
8888

8989
```json
9090
{
@@ -134,7 +134,7 @@ PATCH https://graph.microsoft.com/v1.0/users/10/roles
134134
```
135135

136136
> Note: setting one of the keys to **null** deletes it from the dictionary.
137-
> Note: the domain values for the existing author and maintainer entries will get udpated.
137+
> Note: the domain values for the existing author and maintainer entries will get updated.
138138
> Note: the reviewer entry will be inserted in the dictionary.
139139
140140
### Updating an entry in the dictionary

0 commit comments

Comments
 (0)