You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2022/08/14 12:34:32 UTC

[couchdb-mochiweb] 01/07: Fix typo in atom

This is an automated email from the ASF dual-hosted git repository.

ronny pushed a commit to branch upstream-3.1.0
in repository https://gitbox.apache.org/repos/asf/couchdb-mochiweb.git

commit 927cd19426f9c3631186d3322b7331bb7eb6fe68
Author: Ronny <ro...@apache.org>
AuthorDate: Thu Aug 11 10:07:15 2022 +0200

    Fix typo in atom
---
 src/mochiweb_headers.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mochiweb_headers.erl b/src/mochiweb_headers.erl
index 457758f..0276aee 100644
--- a/src/mochiweb_headers.erl
+++ b/src/mochiweb_headers.erl
@@ -242,7 +242,7 @@ reversed_tokens([C | Rest], Token, Acc) when C=:=$ ;C=:=$\n;C=:=$\t;C=:=$, ->
 reversed_tokens([C | Rest], Token, Acc) ->
     reversed_tokens(Rest, [C | Token], Acc);
 reversed_tokens(_, _, _) ->
-    undefeined.
+    undefined.
 
 extract_quoted_string([], _Acc) ->
     undefined;