1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-30 17:28:20 +02:00

Fix some minor typos (#910)

* aspect-ratio-helper.py: fix typo

* basic syntax: make 'bits' plural in all occurrences
This commit is contained in:
Frances Wingerter 2023-07-06 08:39:47 +00:00 committed by GitHub
parent a290a18065
commit 8df1d74e73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ rectangle has an aspect ratio of 16 to 8.5, meaning that it is
slightly smaller than a standard 16/9 monitor. slightly smaller than a standard 16/9 monitor.
The idea is that this approximates what the course participants can The idea is that this approximates what the course participants can
bee at once during a class. This in turn will help you estimate when see at once during a class. This in turn will help you estimate when
the slides are too large to be seen without scrolling. the slides are too large to be seen without scrolling.
Enable it in book.toml. Enable it in book.toml.

View File

@ -13,8 +13,8 @@ The types have widths as follows:
* `iN`, `uN`, and `fN` are _N_ bits wide, * `iN`, `uN`, and `fN` are _N_ bits wide,
* `isize` and `usize` are the width of a pointer, * `isize` and `usize` are the width of a pointer,
* `char` is 32 bit wide, * `char` is 32 bits wide,
* `bool` is 8 bit wide. * `bool` is 8 bits wide.
<details> <details>