From c7ab1aace102688ca3ad1bba6b5a7c5fd93b21b6 Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Tue, 6 Apr 2021 11:40:02 -0700 Subject: [PATCH] docs(ffi): spelling error (#2489) --- src/ffi/io.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ffi/io.rs b/src/ffi/io.rs index 0d4a140bde..7fb4538815 100644 --- a/src/ffi/io.rs +++ b/src/ffi/io.rs @@ -7,10 +7,10 @@ use tokio::io::{AsyncRead, AsyncWrite}; use super::task::hyper_context; -/// Sentinal value to return from a read or write callback that the operation +/// Sentinel value to return from a read or write callback that the operation /// is pending. pub const HYPER_IO_PENDING: size_t = 0xFFFFFFFF; -/// Sentinal value to return from a read or write callback that the operation +/// Sentinel value to return from a read or write callback that the operation /// has errored. pub const HYPER_IO_ERROR: size_t = 0xFFFFFFFE;