From 785c9af4be0940c65ec5b2598fb136b5481bca27 Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Mon, 13 May 2024 12:51:20 +0200 Subject: [PATCH] Fix typo in 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 3f06a30..74cbb29 100644 --- a/exercises/03_ticket_v1/06_ownership/src/lib.rs +++ b/exercises/03_ticket_v1/06_ownership/src/lib.rs @@ -55,7 +55,7 @@ mod tests { fn works() { let ticket = Ticket::new("A title".into(), "A description".into(), "To-Do".into()); // If you change the signatures as requested, this should compile: - // we can call these methods one after the after because they borrow `self` + // we can call these methods one after the other because they borrow `self` // rather than taking ownership of it. assert_eq!(ticket.title(), "A title"); assert_eq!(ticket.description(), "A description"); -- 2.45.2