Skip to content

Commit

Permalink
Merge pull request #936 from vallentin/patch-1
Browse files Browse the repository at this point in the history
Fixed misspellings
  • Loading branch information
dhardy authored Feb 7, 2020
2 parents d683f67 + 3b16984 commit 63d53c0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ when updating from `rand 0.7.0` without also updating `rand_core`.
- Fix or squelch issues from Clippy lints (#840)

### Additions
- Add a `no_std` target to CI to continously evaluate `no_std` status (#844)
- Add a `no_std` target to CI to continuously evaluate `no_std` status (#844)
- `WeightedIndex`: allow adjusting a sub-set of weights (#866)

## [0.7.0] - 2019-06-28
Expand Down Expand Up @@ -400,7 +400,7 @@ when updating from `rand 0.7.0` without also updating `rand_core`.

## [0.3.14] - 2016-02-13
### Fixed
- Inline definitions from winapi/advapi32, wich decreases build times
- Inline definitions from winapi/advapi32, which decreases build times


## [0.3.13] - 2016-01-09
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ we provide limited mitigations against side-channel attacks:

Additionally, derivations from such an RNG (including the `Rng` trait,
implementations of the `Distribution` trait, and `seq` algorithms) should not
introduce signficant bias other than that expected from the operation in
introduce significant bias other than that expected from the operation in
question (e.g. bias from a weighted distribution).

## Supported Versions
Expand Down
2 changes: 1 addition & 1 deletion rand_core/src/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use crate::{impls, CryptoRng, Error, RngCore};
use getrandom::getrandom;

/// A random number generator that retrieves randomness from from the
/// A random number generator that retrieves randomness from the
/// operating system.
///
/// This is a zero-sized struct. It can be freely constructed with `OsRng`.
Expand Down
2 changes: 1 addition & 1 deletion src/distributions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//! of course [`Rng::sample`].
//!
//! Abstractly, a [probability distribution] describes the probability of
//! occurance of each value in its sample space.
//! occurrence of each value in its sample space.
//!
//! More concretely, an implementation of `Distribution<T>` for type `X` is an
//! algorithm for choosing values from the sample space (a subset of `T`)
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
//!
//! # The Book
//!
//! For the user guide and futher documentation, please read
//! For the user guide and further documentation, please read
//! [The Rust Rand Book](https://rust-random.github.io/book).

#![doc(
Expand Down

0 comments on commit 63d53c0

Please sign in to comment.