Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Commit 0a845b9

Browse files
author
cube
committed
.
1 parent f79240f commit 0a845b9

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/game-of-life/implementing.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -763,10 +763,7 @@ encourage you to go learn about hashlife on your own!
763763

764764
```rust
765765
#[wasm_bindgen]
766-
impl Universe {
767-
// ...
768-
769-
impl fmt::Display for Universe {
766+
impl fmt::Display for Universe {
770767
// ...
771768
let symbol = if cell == 0 { '◻' } else { '◼' };
772769
// ...

0 commit comments

Comments
 (0)