From 421bc126b5626b66cb87e26870872a87ae66131f Mon Sep 17 00:00:00 2001 From: Christopher Simons Date: Tue, 2 Feb 2021 22:16:48 -0500 Subject: [PATCH] README.md: fix typo: is_drainig -> is_draining --- docs/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/README.md b/docs/README.md index 58a00d97..b42b2631 100644 --- a/docs/README.md +++ b/docs/README.md @@ -159,10 +159,10 @@ enum { they can be either 0 or 1. Some flags are set by Mongoose and must be not changed by an application code, for example `is_udp` flag tells application if that connection is UDP or not. Some flags can be changed by application, for -example, `is_drainig` flag, if set by an application, tells Mongoose to send +example, `is_draining` flag, if set by an application, tells Mongoose to send the remaining data to peer, and when everything is sent, close the connection. -User-changeable flags are: `is_hexdumping`, `is_drainig`, `is_closing`. +User-changeable flags are: `is_hexdumping`, `is_draining`, `is_closing`. This is taken from `mongoose.h` as-is: