Skip to content

Commit

Permalink
Fix typo and one instance of missing backticks. (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Oct 29, 2024
1 parent dfdfba3 commit 5beea0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/scalar/subset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use num_complex::Complex;

/// Nested sets and conversions between them (using an injective mapping). Useful to work with
/// substructures. In generic code, it is preferable to use `SupersetOf` as trait bound whenever
/// possible instead of `SubsetOf` (because SupersetOf is automatically implemented whenever
/// possible instead of `SubsetOf` (because `SupersetOf` is automatically implemented whenever
/// `SubsetOf` is).
///
/// The notion of "nested sets" is very broad and applies to what the types are _supposed to
Expand Down
2 changes: 1 addition & 1 deletion src/simd/rand_impl.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::simd::*;

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

0 comments on commit 5beea0e

Please sign in to comment.