From 4df20a63b79d18ca646f651b82801b9de45c40bb Mon Sep 17 00:00:00 2001 From: kabayan55 Date: Fri, 4 Dec 2015 12:22:33 +0900 Subject: [PATCH] Fixed typo in Clonable.rst Changed "Therfore" to "Therefore" --- docs/proposals/rejected/Clonable.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/proposals/rejected/Clonable.rst b/docs/proposals/rejected/Clonable.rst index 8d5087a8147b5..949ecf93cb883 100644 --- a/docs/proposals/rejected/Clonable.rst +++ b/docs/proposals/rejected/Clonable.rst @@ -129,7 +129,7 @@ When a ``Baz`` is copied by any of the “big three” operations (variable initialization, assignment, or function argument passing), even as part of a larger ``struct``, its ``[clone]`` member is ``clone()``\ d. Because ``Foo`` itself has a ``[clone]`` member, that is ``clone()``\ d -also. Therfore copying a ``Baz`` object ``clone()``\ s a ``Foo`` and +also. Therefore copying a ``Baz`` object ``clone()``\ s a ``Foo`` and ``clone()``\ ing a ``Foo`` ``clone()``\ s a ``FooValue``. All ``struct``\ s are ``Clonable`` by default, with ``clone()`` delivering