From cc52afa7f2b54d29870ff16f1f11970dd38c1940 Mon Sep 17 00:00:00 2001 From: wimh Date: Sat, 3 Oct 2015 23:11:30 +0200 Subject: [PATCH] fix typo PratialEq --- src/part07.rs | 2 +- workspace/src/part07.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/part07.rs b/src/part07.rs index 4cc58a4..eb1e0dc 100644 --- a/src/part07.rs +++ b/src/part07.rs @@ -65,7 +65,7 @@ impl PartialEq for BigInt { //@ the "partial", I suggest you check out the documentation of [`PartialEq`](https://doc.rust-lang.org/std/cmp/trait.PartialEq.html) //@ and [`Eq`](https://doc.rust-lang.org/std/cmp/trait.Eq.html). `Eq` can be automatically derived as well. -// Now we can compare `BigInt`s. Rust treats `PratialEq` special in that it is wired to the operator `==`: +// Now we can compare `BigInt`s. Rust treats `PartialEq` special in that it is wired to the operator `==`: //@ That operator can not be used on our numbers! Speaking in C++ terms, we just overloaded the `==` operator //@ for `BigInt`. Rust does not have function overloading (i.e., it will not dispatch to different //@ functions depending on the type of the argument). Instead, one typically finds (or defines) a diff --git a/workspace/src/part07.rs b/workspace/src/part07.rs index 3ea4cc0..916cb01 100644 --- a/workspace/src/part07.rs +++ b/workspace/src/part07.rs @@ -39,7 +39,7 @@ impl PartialEq for BigInt { } -// Now we can compare `BigInt`s. Rust treats `PratialEq` special in that it is wired to the operator `==`: +// Now we can compare `BigInt`s. Rust treats `PartialEq` special in that it is wired to the operator `==`: fn compare_big_ints() { let b1 = BigInt::new(13); let b2 = BigInt::new(37); -- 2.30.2