Skip to content

Commit

Permalink
README consolidation and link fixes (Azure#4890)
Browse files Browse the repository at this point in the history
* Add Samples section. Remove en-us from links.

* Remove en-us.

* Fix samples links in storage.

* Move samples to correct location.

* Fix broken links in README. Correct formatting.

* remove [package] from README because none of the others have it.

* Add syntax highlighting alias java to snippets.

* Undo * in appconfig

* Update shared key credential steps.

* Updating README with comments.
  • Loading branch information
conniey authored and SDK Automation committed Aug 24, 2019
1 parent dba5cee commit c3517c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/keyvault/azure-keyvault-keys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ keyAsyncClient.getKey("keyName").subscribe(keyResponse -> {
Delete an existing Key by calling `deleteKey`.
```java
keyAsyncClient.deleteKey("keyName").subscribe(deletedKey ->
System.out.printf("Deleted Key's deletion time %s \n", deletedKey.deletedDate().toString()));
keyAsyncClient.deleteKey("keyName").subscribe(deletedKeyResponse ->
System.out.printf("Deleted Key's deletion time %s \n", deletedKeyResponse.value().deletedDate().toString()));
```
### List Keys Asynchronously
Expand Down

0 comments on commit c3517c5

Please sign in to comment.