fix: typo

This commit is contained in:
zongzi531 2022-08-11 12:42:14 +08:00
parent bce4f2116f
commit cc02848246
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ fn bar<T, const M: usize>() {
fn main() {}
```
1. const 泛型还能帮我们避免一些运行时检查,提升性能
3. const 泛型还能帮我们避免一些运行时检查,提升性能
```rust
pub struct MinSlice<T, const N: usize> {
pub head: [T; N],