about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 19c9b571a33..13288fbdbce 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3565,7 +3565,7 @@ Each instance of a trait object includes:
    implementation (i.e. a function pointer).
 
 The purpose of trait objects is to permit "late binding" of methods. A call to
-a method on a trait object is only resolved to a vtable entry at compile time.
+a method on a trait object is only resolved to a vtable entry at runtime.
 The actual implementation for each vtable entry can vary on an object-by-object
 basis.