From c745cf8ddd4bbbaa93b309751385a09651984149 Mon Sep 17 00:00:00 2001 From: Gabriel Crispino Date: Sun, 19 Jan 2025 07:42:03 -0300 Subject: [PATCH] fix grammar in exercise 06 from section 03 (#248) Add missing "to" preposition in first TODO comment --- exercises/03_ticket_v1/06_ownership/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/03_ticket_v1/06_ownership/src/lib.rs b/exercises/03_ticket_v1/06_ownership/src/lib.rs index ded2ad8..a9639b2 100644 --- a/exercises/03_ticket_v1/06_ownership/src/lib.rs +++ b/exercises/03_ticket_v1/06_ownership/src/lib.rs @@ -1,6 +1,6 @@ // TODO: based on what we just learned about ownership, it sounds like immutable references // are a good fit for our accessor methods. -// Change the existing implementation of `Ticket`'s accessor methods take a reference +// Change the existing implementation of `Ticket`'s accessor methods to take a reference // to `self` as an argument, rather than taking ownership of it. pub struct Ticket {