Skip to content

Commit

Permalink
fix-class-name (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
masarakki authored and vinjiang committed Dec 10, 2018
1 parent e4a8e8e commit 43aa3a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ There are two ways you can create the client:
require "azure/storage/common"
# Creating an instance of `Azure::Storage::Common::Core::SharedAccessSignature`
generator = Azure::Storage::Common::Core::SharedAccessSignature.new(<your_account_name>, <your_access_key>)
# Creating an instance of `Azure::Storage::Common::Core::Auth::SharedAccessSignature`
generator = Azure::Storage::Common::Core::Auth::SharedAccessSignature.new(your_account_name, your_access_key)
# The generator now can be used to create service SAS or account SAS.
generator.generate_service_sas_token(my_path_or_table_name, my_sas_options)
generator.generate_account_sas_token(my_account_sas_options)
# For details about the possible options, please reference the document of the class `Azure::Storage::Common::Core::SharedAccessSignature`
# For details about the possible options, please reference the document of the class `Azure::Storage::Common::Core::Auth::SharedAccessSignature`
```

Expand Down

0 comments on commit 43aa3a4

Please sign in to comment.