From 1520be032cd78db23b234145b2be16841f4b26ba Mon Sep 17 00:00:00 2001 From: Ian Wagner Date: Sun, 12 Apr 2020 16:59:56 +0900 Subject: [PATCH] Fix minor typo --- src/2_waker_context.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/2_waker_context.md b/src/2_waker_context.md index 61613c6..ae2c1ab 100644 --- a/src/2_waker_context.md +++ b/src/2_waker_context.md @@ -139,7 +139,7 @@ fn main() { // length of the array is encoded in the array itself as the second value. let vtable = vec![ 0, // pointer to `Drop` (which we're not implementing here) - 6, // lenght of vtable + 6, // length of vtable 8, // alignment // we need to make sure we add these in the same order as defined in the Trait.