follow 4-space indent idiom

This commit is contained in:
Tshepang Lekhonkhobe 2020-03-30 15:43:31 +02:00 committed by Who? Me?!
parent 08c37897c0
commit 32c8cd6a2d
1 changed files with 17 additions and 16 deletions

View File

@ -24,6 +24,7 @@ mod my_priv_mod {
}
}
```
Private items can thus be easily tested without worrying about how to expose
them to any sort of external testing apparatus. This is key to the
ergonomics of testing in Rust. Semantically, however, it's rather odd.