File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -137,12 +137,12 @@ Advice: Use 'private' when declaration does not need to be accessed outside of f
137137
138138Applying the ``private `` keyword to a declaration restricts the visibility of
139139the 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
141141absence of any such declarations enables the compiler to infer the ``final ``
142142keyword automatically and remove indirect calls for methods and field accesses
143143accordingly. 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
You can’t perform that action at this time.
0 commit comments