Hi, The attached patch fixes a typo in the code comments of the session subsystem.
Thanks, Joseph
From 84acadfc18b939778ea4aaebba699431fe2592ed Mon Sep 17 00:00:00 2001 From: Joseph Herlant <[email protected]> Date: Sun, 25 Nov 2018 11:22:10 -0800 Subject: [PATCH] CLEANUP: Fix a typo in the session subsystem Fixes a typo in the code comments of the session subsystem. --- src/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session.c b/src/session.c index 8d9e8360..d9897c95 100644 --- a/src/session.c +++ b/src/session.c @@ -93,7 +93,7 @@ void session_free(struct session *sess) } /* callback used from the connection/mux layer to notify that a connection is - * gonig to be released. + * going to be released. */ void conn_session_free(struct connection *conn) { -- 2.19.1

