From 9e2076675d73ea76f95cfa2082beaa77eadd2277 Mon Sep 17 00:00:00 2001 From: Nicolas Goles Date: Thu, 3 Dec 2015 10:22:04 -0800 Subject: [PATCH] `Dynamicism` is not a word Switched it for dynamism, which I guess was the original intent. --- docs/OptimizationTips.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/OptimizationTips.rst b/docs/OptimizationTips.rst index 5e3ab8ddf81a9..07721102d4d4f 100644 --- a/docs/OptimizationTips.rst +++ b/docs/OptimizationTips.rst @@ -54,12 +54,12 @@ this mode will most likely take longer to compile, but may run faster. This mode can be enabled using the Xcode build setting 'Whole Module Optimization'. -Limiting Language Dynamicism +Limiting Language Dynamism ============================ Swift by default is a very dynamic language like Objective-C. Unlike Objective C, Swift gives the programmer the ability to improve runtime performance when -necessary by removing or reducing this dynamicism. This section goes through +necessary by removing or reducing this dynamism. This section goes through several examples of language constructs that can be used to perform such an operation.