about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-02-23 11:27:11 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-02-23 11:27:11 -0500
commit1049e88d1f673acc7c94842ba671383864e0a0c0 (patch)
tree64feefe535e2aacd9b0cdaec2b5d4c7cd663cfb7
parentdcc6ce2c772cb851ac35cbc2ddafcae9bf2fa9fd (diff)
downloadrust-1049e88d1f673acc7c94842ba671383864e0a0c0.tar.gz
rust-1049e88d1f673acc7c94842ba671383864e0a0c0.zip
Static and dynamic dispatch: missing word
-rw-r--r--src/doc/trpl/static-and-dynamic-dispatch.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/static-and-dynamic-dispatch.md b/src/doc/trpl/static-and-dynamic-dispatch.md
index 98dac9bf84b..a119a5b0021 100644
--- a/src/doc/trpl/static-and-dynamic-dispatch.md
+++ b/src/doc/trpl/static-and-dynamic-dispatch.md
@@ -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