about summary refs log tree commit diff
path: root/src/doc/trpl/static-and-dynamic-dispatch.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/trpl/static-and-dynamic-dispatch.md')
-rw-r--r--src/doc/trpl/static-and-dynamic-dispatch.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/static-and-dynamic-dispatch.md b/src/doc/trpl/static-and-dynamic-dispatch.md
index 504ed63934c..a7794814156 100644
--- a/src/doc/trpl/static-and-dynamic-dispatch.md
+++ b/src/doc/trpl/static-and-dynamic-dispatch.md
@@ -95,7 +95,7 @@ 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 dispatch, but not vice versa, meaning static calls are more flexible.
 The standard library tries to be statically dispatched where possible for this
-reason. 
+reason.
 
 ## Dynamic dispatch