Skip to content

Commit 5beea0e

Browse files
Fix typo and one instance of missing backticks. (#62)
1 parent dfdfba3 commit 5beea0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/scalar/subset.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use num_complex::Complex;
55

66
/// Nested sets and conversions between them (using an injective mapping). Useful to work with
77
/// substructures. In generic code, it is preferable to use `SupersetOf` as trait bound whenever
8-
/// possible instead of `SubsetOf` (because SupersetOf is automatically implemented whenever
8+
/// possible instead of `SubsetOf` (because `SupersetOf` is automatically implemented whenever
99
/// `SubsetOf` is).
1010
///
1111
/// The notion of "nested sets" is very broad and applies to what the types are _supposed to

src/simd/rand_impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::simd::*;
22

33
// Given two token streams in the format `ignore_snd!([first_token_tree], [second])` will simply
4-
// expand to the first one. This is usefull in order to allow the repetition of some statement
4+
// expand to the first one. This is useful in order to allow the repetition of some statement
55
// according to some repetition variable, without using the repetition variables.
66
macro_rules! ignore_snd (
77
([$($fst: tt)*], [$($snd: tt)*]) => ($($fst)*)

0 commit comments

Comments
 (0)