Skip to content

Commit 9fcd71f

Browse files
committed
Fix typo
1 parent e7f46f1 commit 9fcd71f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/const-generics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ In some sense the desugarings from the previous examples are to:
6161
struct Foo<const N: usize>;
6262
type Alias = [u8; 1 + 1];
6363

64-
// sort-of desugars to psuedo-rust:
64+
// sort-of desugars to pseudo-rust:
6565
struct Foo<const N: usize>;
6666

6767
const ANON = 1 + 1;
@@ -178,7 +178,7 @@ To check this we have [`ClauseKind::ConstArgHasType(ty::Const, Ty)`][const_arg_h
178178
```rust
179179
fn foo<const N: usize>() {}
180180

181-
// desugars to in psuedo-rust
181+
// desugars to in pseudo-rust
182182

183183
fn foo<const N>()
184184
where

0 commit comments

Comments
 (0)