Skip to content

Commit 511444c

Browse files
Merge pull request #212 from JakeRoggenbuck/spelling-fixes
Fix spelling
2 parents 2ebe2f2 + 45f073d commit 511444c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ RedoxQL is our implementation of an [L-Store](https://openproceedings.org/2018/c
1717
> Read the Structure section — We use both Rust and Python and they go in different places
1818
1919
## Setup
20-
Create a virtual envirement
20+
Create a virtual environment
2121
```
2222
python3 -m venv venv
2323
```
2424

25-
Source the virtual envirement
25+
Source the virtual environment
2626
```
2727
source venv/bin/activate
2828
```
@@ -184,7 +184,7 @@ Python tests are located in a separate directory called `tests` located in `./py
184184

185185
## Rust Docs
186186

187-
Rust has a way of making docs from the source code. Run `cargo doc` and view the produced HTML page in your browser. Adding comments to yor code starting with `///` will be put into these docs.
187+
Rust has a way of making docs from the source code. Run `cargo doc` and view the produced HTML page in your browser. Adding comments to your code starting with `///` will be put into these docs.
188188

189189
## Speed Analysis
190190

@@ -352,8 +352,8 @@ This includes `insert` and `update`.
352352

353353
### Using FxHashMap instead of default HashMap
354354

355-
The Rust defualt HashMap is a great general purpose HashMap implementation and is very fast but FxHashMap is a decent bit faster.
356-
After changing the page directory to use FxHashMap in [PR#186](https://github.com/JakeRoggenbuck/ecs-165a-database/pull/186), the speed of many reads and writes improved by **over 28%** and the overall speed of all the benchmarks improved by by **over 26%**.
355+
The Rust default HashMap is a great general purpose HashMap implementation and is very fast but FxHashMap is a decent bit faster.
356+
After changing the page directory to use FxHashMap in [PR#186](https://github.com/JakeRoggenbuck/ecs-165a-database/pull/186), the speed of many reads and writes improved by **over 28%** and the overall speed of all the benchmarks improved by **over 26%**.
357357

358358
```rs
359359
use crate::container::{ReservedColumns, NUM_RESERVED_COLUMNS};
@@ -419,7 +419,7 @@ Here is the output from `testM2.py`
419419

420420
### Python dis library and bytecode
421421

422-
Python gets parsed into byetcode and we can see it using the [dis](https://docs.python.org/3/library/dis.html) library. This can be useful to see what byte might be unneeded.
422+
Python gets parsed into bytecode and we can see it using the [dis](https://docs.python.org/3/library/dis.html) library. This can be useful to see what byte might be unneeded.
423423

424424
![image](https://github.com/user-attachments/assets/5324d422-f21a-4484-9467-a247b202bd8a)
425425

0 commit comments

Comments
 (0)