Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating typo in azure api guidelines #221

Open
wants to merge 2 commits into
base: vNext
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions azure/Guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ Retirement of an API version must follow the standard [_Azure Global Retirements
The Microsoft REST API guidelines give two options for how services and clients communicate the version: a url segment and a query parameter. Azure services **MUST** use the api-version query parameter. For example:

```text
GET https://blobstore.azure.com/foo.com/acct1/c1/blob2?api-version=1.0
PUT https://blobstore.azure.com/foo.com/acct1/c1/b2?api-version=2014-12-07
POST https://blobstore.azure.com/foo.com/acct1/c1/b2?api-version=2015-12-07
GET https://blobstore.azure.net/foo.com/acct1/c1/blob2?api-version=1.0
PUT https://blobstore.azure.net/foo.com/acct1/c1/b2?api-version=2014-12-07
POST https://blobstore.azure.net/foo.com/acct1/c1/b2?api-version=2015-12-07
```

### API Changes that require a version change
Expand Down