docs: fix typo

Add missing `'s` to ` Let check it out.`
This commit is contained in:
Szilárd Parrag 2021-12-18 11:21:58 +01:00 committed by GitHub
parent 208ced64db
commit c53e8198af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -170,7 +170,7 @@ where
/// clone_on_write.values.to_mut().push(3);
/// println!("clone_on_write = {:?}", clone_on_write.values);
///
/// // The data was mutated. Let check it out.
/// // The data was mutated. Let's check it out.
/// match clone_on_write {
/// Items { values: Cow::Owned(_) } => println!("clone_on_write contains owned data"),
/// _ => panic!("expect owned data"),