Skip to content

Commit

Permalink
Wording swap
Browse files Browse the repository at this point in the history
Co-authored-by: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com>
  • Loading branch information
Skptak and AniruddhaKanhere authored Aug 30, 2022
1 parent c025833 commit 8e8f9f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/core_http_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ static int8_t caseInsensitiveStringCmp( const char * str1,
firstChar = str1[ i ];
secondChar = str2[ i ];

/* Subtract 32 to go from uppercase to lowercase ASCII character */
/* Subtract 32 to go from lowercase to uppercase ASCII character */
if( ( firstChar >= 'a' ) && ( firstChar <= 'z' ) )
{
firstChar = firstChar - offset;
Expand Down

0 comments on commit 8e8f9f4

Please sign in to comment.