From b29ba50db012a155be227608a5b18e0ae08e521c Mon Sep 17 00:00:00 2001 From: Devin Soni Date: Thu, 3 Dec 2015 13:18:41 -0500 Subject: [PATCH 1/3] fixed typo "when ever", deleted repeated word --- docs/GitWorkflows.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/GitWorkflows.rst b/docs/GitWorkflows.rst index a922b87656802..95c3adb13fd81 100644 --- a/docs/GitWorkflows.rst +++ b/docs/GitWorkflows.rst @@ -32,8 +32,8 @@ repository via bash in a terminal. A lot of information since this is supposed to be a short, actionable guide. For more information, please see the Git crash course guide for SVN users at -*NOTE* When ever when we say the Swift repository we mean any repository in the - Swift project. +*NOTE* Whenever we say the Swift repository, we mean any repository in the +Swift project. Quicksetup (TLDR) ----------------- From fe1aee3117422700c3204f9353acf624d3591310 Mon Sep 17 00:00:00 2001 From: Devin Soni Date: Thu, 3 Dec 2015 13:24:00 -0500 Subject: [PATCH 2/3] fixed capitalization in note for consistency --- docs/Arrays.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Arrays.rst b/docs/Arrays.rst index f0a8c5b43f51f..ed5eea6af3572 100644 --- a/docs/Arrays.rst +++ b/docs/Arrays.rst @@ -113,7 +113,7 @@ Bridging Rules and Terminology for all Types class func _forceBridgeFromObjectiveC(_: _ObjectiveCType) -> Self } - .. Note:: classes and ``@objc`` existentials shall not conform to + .. Note:: Classes and ``@objc`` existentials shall not conform to ``_BridgedToObjectiveC``, a restriction that's not currently enforceable at compile-time. From 8ac2b31581aa1131be808020368c93c6748c6b6a Mon Sep 17 00:00:00 2001 From: Devin Soni Date: Thu, 3 Dec 2015 13:31:53 -0500 Subject: [PATCH 3/3] fixed typo "complatiblity" --- docs/CallingConvention.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CallingConvention.rst b/docs/CallingConvention.rst index e46e86ffb3155..2d7f08468c1fb 100644 --- a/docs/CallingConvention.rst +++ b/docs/CallingConvention.rst @@ -1181,7 +1181,7 @@ legal type sequences from the direct results. If this yields an empty sequence, the result type is `void`. If it yields a single legal type, the result type is the corresponding Clang type. No other could actually have come from an imported C declaration, so we don't have -any real compatiblity requirements; for the convenience of +any real compatibility requirements; for the convenience of interoperation, this is handled by constructing a new C struct which contains the corresponding Clang types for the legal type sequence as its fields.