about summary refs log tree commit diff
path: root/src/libcore/option.rs
diff options
context:
space:
mode:
authorLetheed <dev@daweb.se>2015-12-10 14:20:32 +0100
committerLetheed <dev@daweb.se>2015-12-10 14:20:32 +0100
commitaf4414bd30b75202fd93c369dc5eac372e07b203 (patch)
tree2246a52a31c108343dd08f296175895594e22a50 /src/libcore/option.rs
parent8eee0efd1f3f43e379abf7dfcb190bd60700eeca (diff)
downloadrust-af4414bd30b75202fd93c369dc5eac372e07b203.tar.gz
rust-af4414bd30b75202fd93c369dc5eac372e07b203.zip
fix missing Panics tag and missing period
Diffstat (limited to 'src/libcore/option.rs')
-rw-r--r--src/libcore/option.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/option.rs b/src/libcore/option.rs
index 209cebeaf1b..c04015fc0ab 100644
--- a/src/libcore/option.rs
+++ b/src/libcore/option.rs
@@ -309,7 +309,7 @@ impl<T> Option<T> {
     // Getting to contained values
     /////////////////////////////////////////////////////////////////////////
 
-    /// Unwraps an option, yielding the content of a `Some`
+    /// Unwraps an option, yielding the content of a `Some`.
     ///
     /// # Panics
     ///