Skip to content

Commit

Permalink
Merge pull request #8 from Somsubro-Banerjee/dev
Browse files Browse the repository at this point in the history
Fixed Document syntax
  • Loading branch information
Somsubro-Banerjee authored Nov 8, 2023
2 parents 4e34e0a + 526ada1 commit 68dfb6d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_blob_uploader"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
license-file = "LICENSE"
description = "A simple crate to help you upload files to Azure Blob Storage"
Expand Down
4 changes: 2 additions & 2 deletions examples/azure_uploader/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/azure_uploader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
azure_blob_uploader = "0.1.2"
azure_blob_uploader = "0.1.4"
tokio = { version = "1.33.0", features = ["full"] }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/// )
/// .await;
/// match uploader {
/// Ok(value) => println!(""blob url: {:#?}", value), // use pattern mathcing to get the output.
/// Ok(value) => println!("blob url: {:#?}", value), // use pattern mathcing to get the output.
/// Err(_) => println!("Some Error Occured!"),
/// }
/// }
Expand Down

0 comments on commit 68dfb6d

Please sign in to comment.