提交 4b26875b 编写于 作者: C Cyrus Najmabadi

Improve descriptions.

上级 fedaf5d0
...@@ -14,17 +14,19 @@ namespace Microsoft.CodeAnalysis.FindSymbols ...@@ -14,17 +14,19 @@ namespace Microsoft.CodeAnalysis.FindSymbols
internal enum SearchKind internal enum SearchKind
{ {
/// <summary> /// <summary>
/// Search term must be matched exactly (including casing). /// Use an case-sensitive comparison when searching for matching items.
/// </summary> /// </summary>
Exact, Exact,
/// <summary> /// <summary>
/// Search term must be matched exactly (not including casing). /// Use a case-insensitive comparison when searching for matching items.
/// </summary> /// </summary>
ExactIgnoreCase, ExactIgnoreCase,
/// <summary> /// <summary>
/// Search term can match in a fuzzy (i.e. misspellings) manner. /// Use a fuzzy comparison when searching for matching items. Fuzzy matching allows for
/// a certain amount of misspellings, missing words, etc. See <see cref="SpellChecker"/> for
/// more details.
/// </summary> /// </summary>
Fuzzy, Fuzzy,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册