Skip to content

Commit

Permalink
Fix typo in std::future::Future docs
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseizinger committed Feb 18, 2019
1 parent 146aa60 commit 75c541f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/future/future.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pub trait Future {
///
/// Once a future has completed (returned `Ready` from `poll`),
/// then any future calls to `poll` may panic, block forever, or otherwise
/// cause any kind of bad behavior expect causing memory unsafety.
/// cause any kind of bad behavior except causing memory unsafety.
/// The `Future` trait itself provides no guarantees about the behavior
/// of `poll` after a future has completed.
///
Expand Down

0 comments on commit 75c541f

Please sign in to comment.