Static and dynamic dispatch: missing word

This commit is contained in:
Steve Klabnik 2015-02-23 11:27:11 -05:00
parent dcc6ce2c77
commit 1049e88d1f

View File

@ -92,8 +92,8 @@ dynamic dispatch is sometimes more efficient.
However, the common case is that it is more efficient to use static dispatch,
and one can always have a thin statically-dispatched wrapper function that does
a dynamic, but not vice versa, meaning static calls are more flexible. The
standard library tries to be statically dispatched where possible for this
a dynamic dispatch, but not vice versa, meaning static calls are more flexible.
The standard library tries to be statically dispatched where possible for this
reason.
## Dynamic dispatch