diff options
author | iilyak <iilyak@users.noreply.github.com> | 2020-04-20 14:47:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 14:47:44 -0700 |
commit | 8554329cd19765f7b187899cb12442464fca6ead (patch) | |
tree | 05e494d7bdbb38314dfff666ba2847fc2553f1a5 | |
parent | 0b8dfa6cc4ec45b4101c49f0eacbe3e2aff8fad4 (diff) | |
parent | 45e0c30368cf071dc3de0df32efba95dde5abcd8 (diff) | |
download | couchdb-8554329cd19765f7b187899cb12442464fca6ead.tar.gz |
Merge pull request #2796 from cloudant/fix-typo
Fix typo in error message
-rw-r--r-- | src/chttpd/src/chttpd_httpd_handlers.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chttpd/src/chttpd_httpd_handlers.erl b/src/chttpd/src/chttpd_httpd_handlers.erl index 79ec3db8e..d50115917 100644 --- a/src/chttpd/src/chttpd_httpd_handlers.erl +++ b/src/chttpd/src/chttpd_httpd_handlers.erl @@ -514,5 +514,5 @@ not_supported(#httpd{} = Req, _Db) -> not_implemented(#httpd{} = Req, _Db) -> - Msg = <<"resouce is not implemented">>, + Msg = <<"resource is not implemented">>, chttpd:send_error(Req, 501, not_implemented, Msg). |