Skip to content

Commit

Permalink
Fix a typo and add some backticks.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Oct 23, 2023
1 parent a7287a2 commit 4456784
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ deletion and access all take O(1) time with low overhead. Great for storing
collections of objects that need stable, safe references but have no clear
ownership otherwise, such as game entities or graph nodes. Two secondary maps,
`SecondaryMap` and `SparseSecondaryMap` are also provided that allow you to map
further objects to the keys created by one of the slot maps. Please refer to the
further objects to the keys created by one of the slot maps. Please refer to
[**the documentation**](https://docs.rs/slotmap) for more information.

The minimum required stable Rust version for `slotmap` is 1.49. To start using
Expand Down
4 changes: 2 additions & 2 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version 1.0.6
=============

- Made Key trait unsafe, as it was erroneously safe to implement.
- Made `Key` trait unsafe, as it was erroneously safe to implement.


Version 1.0.5
Expand Down Expand Up @@ -38,7 +38,7 @@ Version 1.0.2
Version 1.0.1
=============

- Fixed an instance where an uninitialized [u32; N] was created. The
- Fixed an instance where an uninitialized `[u32; N]` was created. The
uninitialized values were never read - the code always initialized them
before reading - but simply having the variable be uninitialized (despite all
bit patterns being valid) is technically undefined behavior.
Expand Down

0 comments on commit 4456784

Please sign in to comment.