Skip to content

Commit

Permalink
Note that case insensitivity is the default
Browse files Browse the repository at this point in the history
Saying "code search is case-insensitive" then saying "you can do
case-sensitive searches" can seem confusing. Make it less confusing by
noting that case insensitivity is only the default behavior.
  • Loading branch information
victorlin authored Oct 17, 2024
1 parent bf30db8 commit f63fea4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -317,4 +317,4 @@ If code search guesses wrong, you can always get the search you wanted by using

## Case sensitivity

Code search is case-insensitive. Searching for `True` will include results for _uppercase_ `TRUE` and _lowercase_ `true`. You can do case-sensitive searches by using a regular expression with case insensitivity turned off, for example `(?-i)True`.
By default, code search is case-insensitive. Searching for `True` will include results for _uppercase_ `TRUE` and _lowercase_ `true`. You can do case-sensitive searches by using a regular expression with case insensitivity turned off, for example `(?-i)True`.

0 comments on commit f63fea4

Please sign in to comment.