Skip to content

Commit

Permalink
Document the purpose of the streaming API
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Oct 11, 2022
1 parent 09525ee commit c8bef50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ println!("Signature as bytes: {:?}", signature_as_bytes);

## Incremental API example usage

Messages can also be supplied as multiple parts (streaming API):
Messages can also be supplied as multiple parts (streaming API) in order to handle large messages without using much memory:

```rust
/// Creates a new key pair.
Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
//!
//! ## Incremental API example usage
//!
//! Messages can also be supplied as multiple parts (streaming API):
//! Messages can also be supplied as multiple parts (streaming API) in order to
//! handle large messages without using much memory:
//!
//! ```rust
//! use ed25519_compact::*;
Expand Down

0 comments on commit c8bef50

Please sign in to comment.