From 4884284adc7c92095e8e5bfb7c49245292eac0f0 Mon Sep 17 00:00:00 2001 From: codester Date: Fri, 4 Dec 2015 00:06:13 +0530 Subject: [PATCH] Fixed typo circumstances Fixed typo --- docs/StdlibRationales.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/StdlibRationales.rst b/docs/StdlibRationales.rst index 60459256fb0c6..8669653885f91 100644 --- a/docs/StdlibRationales.rst +++ b/docs/StdlibRationales.rst @@ -175,7 +175,7 @@ Use of ``BooleanType`` in library APIs -------------------------------------- Use ``Bool`` instead of a generic function over a ``BooleanType``, unless there -are special cicrumstances (for example, ``func &&`` is designed to work on all +are special circumstances (for example, ``func &&`` is designed to work on all boolean values so that ``&&`` feels like a part of the language). ``BooleanType`` is a protocol to which only ``Bool`` and ``ObjCBool`` conform.