Merge pull request #244 from 0xff-dev/master

Incomplete function name
This commit is contained in:
Sunface 2022-06-30 09:51:24 +08:00 committed by GitHub
commit 4b3b76a3e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ use std::ops;
// 实现 fn multiply 方法
// 如上所述,`+` 需要 `T` 类型实现 `std::ops::Add` 特征
// 那么, `*` 运算符需要实现什么特征呢? 你可以在这里找到答案: https://doc.rust-lang.org/core/ops/
fn multipl
fn multiply
fn main() {
assert_eq!(6, multiply(2u8, 3u8));