From e666b200d4482862f998a9d205b22066f594e8f5 Mon Sep 17 00:00:00 2001 From: Mal Miller <> Date: Tue, 21 Sep 2021 13:02:04 +0100 Subject: [PATCH] Correct README example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f713c4..f1042b4 100644 --- a/README.md +++ b/README.md @@ -363,7 +363,7 @@ using HTTP function not_HTTP_message_filter(log) # HTTP.jl utilizes internal modules so call parentmodule(...) - log.module !== HTTP && parentmodule(log._module) !== HTTP + log._module !== HTTP && parentmodule(log._module) !== HTTP end global_logger(EarlyFilteredLogger(not_HTTP_message_filter, global_logger()))