From f9e95b29878e548c8adc4ac15d5880fa26843515 Mon Sep 17 00:00:00 2001 From: Flaviu Tamas Date: Tue, 26 May 2015 09:21:15 -0400 Subject: Amend optionals docstring --- lib/pure/optionals.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/pure/optionals.nim') diff --git a/lib/pure/optionals.nim b/lib/pure/optionals.nim index d0d832f59..ef01e1260 100644 --- a/lib/pure/optionals.nim +++ b/lib/pure/optionals.nim @@ -97,7 +97,7 @@ proc isNone*[T](self: Option[T]): bool = proc unsafeGet*[T](self: Option[T]): T = - ## Returns the value of a `just`. Behavior is undefined for `none`. + ## Returns the value of a ``some``. Behavior is undefined for ``none``. assert self.isSome self.val @@ -110,7 +110,7 @@ proc get*[T](self: Option[T]): T = proc `==`*(a, b: Option): bool = - ## Returns ``true`` if both ``Option``s are `none`, + ## Returns ``true`` if both ``Option``s are ``none``, ## or if they have equal values (a.has and b.has and a.val == b.val) or (not a.has and not b.has) -- cgit 1.4.1-2-gfad0