From e7f4a73aab43819e82007c01c5d92612c67e4949 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 12 Feb 2023 13:19:00 +0100 Subject: [PATCH] error: correct doc reference --- net/http/error.ha | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/http/error.ha b/net/http/error.ha index 2306aee..e0dbd1a 100644 --- a/net/http/error.ha +++ b/net/http/error.ha @@ -4,7 +4,7 @@ use net::dial; // Errors possible while servicing HTTP requests. Note that these errors are for // errors related to the processing of the HTTP connection; semantic HTTP errors -// such as [[STATUS_NOTFOUND]] are not handled by this type. +// such as [[STATUS_NOT_FOUND]] are not handled by this type. export type error = !(dial::error | io::error | errors::unsupported | protoerr); // An HTTP protocol error occurred, indicating that the remote party is not