Updating generic to be consistent (#710)

This commit is contained in:
JJ Ferman 2022-11-09 02:02:13 -05:00 committed by GitHub
parent 787f5dd81b
commit 387d2844b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,8 +25,8 @@ and the duration of the timeout:
```rust
use std::time::Duration;
struct Timeout<T> {
inner: T,
struct Timeout<S> {
inner: S,
timeout: Duration,
}
```