Skip to content

Commit

Permalink
Fix inconsistency of docs with events played out in DBZ
Browse files Browse the repository at this point in the history
It was, in fact, Goku whose power level was over 9000.
  • Loading branch information
johanpel committed Apr 7, 2020
1 parent 8d0f94f commit 1e5bbfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -25,8 +25,8 @@ struct Monster {

let monsters = Arena::new();

let vegeta = monsters.alloc(Monster { level: 9001 });
assert!(vegeta.level > 9000);
let goku = monsters.alloc(Monster { level: 9001 });
assert!(goku.level > 9000);
```

## Safe Cycles
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -22,8 +22,8 @@
//!
//! let monsters = Arena::new();
//!
//! let vegeta = monsters.alloc(Monster { level: 9001 });
//! assert!(vegeta.level > 9000);
//! let goku = monsters.alloc(Monster { level: 9001 });
//! assert!(goku.level > 9000);
//! ```
//!
//! ## Safe Cycles
Expand Down

0 comments on commit 1e5bbfa

Please sign in to comment.