Skip to content

Commit cdc7298

Browse files
Solved suggestions
1 parent 1fd928e commit cdc7298

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/result.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@
342342
//! [`Some(v)`]: Option::Some
343343
//! [`transpose`]: Result::transpose
344344
//!
345-
//! This method transforms the contained value of the [`Ok`] variant:
345+
//! These methods transform the contained value of the [`Ok`] variant:
346346
//!
347347
//! * [`map`] transforms [`Result<T, E>`] into [`Result<U, E>`] by applying
348348
//! the provided function to the contained value of [`Ok`] and leaving
@@ -354,7 +354,7 @@
354354
//! [`map`]: Result::map
355355
//! [`inspect`]: Result::inspect
356356
//!
357-
//! This method transforms the contained value of the [`Err`] variant:
357+
//! These methods transform the contained value of the [`Err`] variant:
358358
//!
359359
//! * [`map_err`] transforms [`Result<T, E>`] into [`Result<T, F>`] by
360360
//! applying the provided function to the contained value of [`Err`] and

0 commit comments

Comments
 (0)