Remove array/slice syntax from argument &mut str in TODO comment for lowercase func...
authortomgrbz <62816199+tomgrbz@users.noreply.github.com>
Thu, 20 Jun 2024 08:18:55 +0000 (04:18 -0400)
committerGitHub <noreply@github.com>
Thu, 20 Jun 2024 08:18:55 +0000 (10:18 +0200)
Co-authored-by: thomasgrbic <grbic.t@northeastern.edu>
exercises/06_ticket_management/11_mutable_slices/src/lib.rs

index 1604a91..9fc8155 100644 (file)
@@ -1,6 +1,6 @@
 // TODO: Define a function named `lowercase` that converts all characters in a string to lowercase,
 //  modifying the input in place.
-//  Does it need to take a `&mut String`? Does a `&mut [str]` work? Why or why not?
+//  Does it need to take a `&mut String`? Does a `&mut str` work? Why or why not?
 
 #[cfg(test)]
 mod tests {