Fix typo in search.rs (#39045)

Fixed confusing word

Release Notes:

- Fixed a typo in the tooltip for search case sensitivity.
This commit is contained in:
warrenjokinen
2025-09-28 11:17:08 +02:00
committed by GitHub
parent 78098f6809
commit 4cd839e352
+1 -1
View File
@@ -98,7 +98,7 @@ impl SearchOption {
pub fn label(&self) -> &'static str {
match self {
SearchOption::WholeWord => "Match Whole Words",
SearchOption::CaseSensitive => "Match Case Sensitively",
SearchOption::CaseSensitive => "Match Case Sensitivity",
SearchOption::IncludeIgnored => "Also search files ignored by configuration",
SearchOption::Regex => "Use Regular Expressions",
SearchOption::OneMatchPerLine => "One Match Per Line",