Skip to content

Commit

Permalink
Remove out of context comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bidoubiwa committed Aug 3, 2022
1 parent 75fbb02 commit d21ac0e
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,18 +433,6 @@ impl Client {
/// let mut key = KeyBuilder::new("create_key");
/// key.with_index("*").with_action(Action::DocumentsAdd);
/// let key = client.create_key(key).await.unwrap();
/// # // Method 2
/// let key = client.create_key("create_key")
/// .with_index("*")
/// .with_action(Action::DocumentsAdd)
/// .execute()
/// .await.unwrap();
/// # // Method 3
/// let key = KeyBuilder::new("My little lovely test key")
/// .create(&client).await.unwrap();
///
///
///
/// assert_eq!(key.description, "create_key");
/// # client.delete_key(key).await.unwrap();
/// # });
Expand Down

0 comments on commit d21ac0e

Please sign in to comment.