Skip to content

Commit

Permalink
Fix a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed May 31, 2023
1 parent a5a2584 commit ae10fa2
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Realm/Realm/Attributes/IndexType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,12 @@ public enum IndexType : int
/// and <c>QueryMethods.FullTextSearch(o.Bio, "café DANCING")</c> will return the same set of matches.
/// </item>
/// <item>
/// Ignoring results with certain tokens are done using `-`, e.g. <c>QueryMethods.FullTextSearch(o.Bio, "computer -dancing")</c>
/// will find all objects that contain <c>computer</c> but not <c>dancing</c> .
/// Ignoring results with certain tokens is done using <c>-</c>, e.g. <c>QueryMethods.FullTextSearch(o.Bio, "computer -dancing")</c>
/// will find all objects that contain <c>computer</c> but not <c>dancing</c>.
/// </item>
/// <item>
/// Tokens only consist of alphanumerical characters from ASCII and the Latin-1 supplement. All other characters
/// are considered whitespace. In particular words using `-` like <c>full-text</c> are split into two tokens.
/// </item>
/// <item>
/// are considered whitespace. In particular words using <c>-</c> like <c>full-text</c> are split into two tokens.
/// </item>
/// </list>
/// <br/>
Expand Down

0 comments on commit ae10fa2

Please sign in to comment.