From 2b4a6aa1494d80564662271900fa3c73d713411e Mon Sep 17 00:00:00 2001 From: Taylor Yu Date: Thu, 1 Jul 2021 19:14:27 -0500 Subject: [PATCH] fix missing word --- library/core/src/option.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/core/src/option.rs b/library/core/src/option.rs index bd9ac7bb3d9..2d493c94571 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -417,7 +417,8 @@ //! [`get_or_insert_with`]: Option::get_or_insert_with //! [`insert`]: Option::insert //! -//! These methods transfer ownership of the contained of an [`Option`]: +//! These methods transfer ownership of the contained value of an +//! [`Option`]: //! //! * [`take`] takes ownership of the contained value of an [`Option`], if //! any, replacing the [`Option`] with [`None`]