Skip to content

Commit

Permalink
docs: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
moldhouse committed Nov 21, 2024
1 parent 1ebaba3 commit 67d2374
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,9 @@ impl Client {
/// tokens: true, // return text-tokens
/// token_ids: true, // return numeric token-ids
/// };
/// let respones = client.tokenize(&task, model, &How::default()).await?;
/// let responses = client.tokenize(&task, model, &How::default()).await?;
///
/// dbg!(&respones);
/// dbg!(&responses);
/// Ok(())
/// }
/// ```
Expand Down Expand Up @@ -403,9 +403,9 @@ impl Client {
/// let task = TaskDetokenization {
/// token_ids: &token_ids,
/// };
/// let respones = client.detokenize(&task, model, &How::default()).await?;
/// let responses = client.detokenize(&task, model, &How::default()).await?;
///
/// dbg!(&respones);
/// dbg!(&responses);
/// Ok(())
/// }
/// ```
Expand Down

0 comments on commit 67d2374

Please sign in to comment.