Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Lurk committed Nov 7, 2024
1 parent 051ca9e commit 5a80914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tags/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub async fn get_tags(cloud_name: Arc<str>, tag_name: Arc<str>) -> Result<TagLis
let text = response
.text()
.await
.context("parsing responce into text")?;
.context("parsing response into text")?;
let json = serde_json::from_str(&text).context(format!("parsing into json:\n{}", text))?;
Ok(json)
}

0 comments on commit 5a80914

Please sign in to comment.