Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
ja573 committed Nov 18, 2024
1 parent fe45f43 commit 917e1ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thoth-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ impl ThothClient {
///
/// # async fn run() -> ThothResult<Timestamp> {
/// let thoth_client = ThothClient::new("https://api.thoth.pub/graphql".to_string());
/// let publisher_id = Uuid::parse_str("00000000-0000-0000-AAAA-000000000001")?;
/// let work_last_updated = thoth_client.get_work_last_updated(publisher_id).await?;
/// let work_id = Uuid::parse_str("00000000-0000-0000-AAAA-000000000001")?;
/// let work_last_updated = thoth_client.get_work_last_updated(work_id).await?;
/// # Ok(work_last_updated)
/// # }
/// ```
Expand Down

0 comments on commit 917e1ec

Please sign in to comment.