Skip to content

Commit 156fd99

Browse files
committed
Merge pull request #67 from codestergit/patch-7
Fix Typos
2 parents 166ba55 + e9b3b2e commit 156fd99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: docs/OptimizationTips.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,12 @@ Advice: Use 'private' when declaration does not need to be accessed outside of f
137137

138138
Applying the ``private`` keyword to a declaration restricts the visibility of
139139
the declaration to the file in which it is declared. This allows the compiler to
140-
be able to ascertain all other potentially overridding declarations. Thus the
140+
be able to ascertain all other potentially overriding declarations. Thus the
141141
absence of any such declarations enables the compiler to infer the ``final``
142142
keyword automatically and remove indirect calls for methods and field accesses
143143
accordingly. For instance in the following, ``e.doSomething()`` and
144144
``f.myPrivateVar``, will be able to be accessed directly assuming ``E``, ``F``
145-
do not have any overridding declarations in the same file:
145+
do not have any overriding declarations in the same file:
146146

147147
::
148148

0 commit comments

Comments
 (0)