Skip to content

Commit

Permalink
Made the match details publicly visible.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Richards committed Oct 28, 2020
1 parent b9d90fd commit 34f65c5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion zxcvbn-core/Matcher/Matches/BruteForceMatch.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Zxcvbn.Matcher.Matches
{
internal class BruteForceMatch : Match
public class BruteForceMatch : Match
{
}
}
2 changes: 1 addition & 1 deletion zxcvbn-core/Matcher/Matches/DateMatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// <summary>
/// A match found by the date matcher
/// </summary>
internal class DateMatch : Match
public class DateMatch : Match
{
/// <summary>
/// The detected day
Expand Down
2 changes: 1 addition & 1 deletion zxcvbn-core/Matcher/Matches/DictionaryMatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Zxcvbn.Matcher.Matches
/// <summary>
/// Matches found by the dictionary matcher contain some additional information about the matched word.
/// </summary>
internal class DictionaryMatch : Match
public class DictionaryMatch : Match
{
public DictionaryMatch()
{
Expand Down
2 changes: 1 addition & 1 deletion zxcvbn-core/Matcher/Matches/RegexMatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// <summary>
/// Matches found by the dictionary matcher contain some additional information about the matched word.
/// </summary>
internal class RegexMatch : Match
public class RegexMatch : Match
{
public RegexMatch()
{
Expand Down
2 changes: 1 addition & 1 deletion zxcvbn-core/Matcher/Matches/RepeatMatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Zxcvbn.Matcher.Matches
/// <summary>
/// A match found with the RepeatMatcher
/// </summary>
internal class RepeatMatch : Match
public class RepeatMatch : Match
{
public double BaseGuesses { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion zxcvbn-core/Matcher/Matches/SequenceMatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// <summary>
/// A match made using the <see cref="T:Zxcvbn.Matcher.SequenceMatcher" /> containing some additional sequence information.
/// </summary>
internal class SequenceMatch : Match
public class SequenceMatch : Match
{
/// <summary>
/// Whether the match was found in ascending order (cdefg) or not (zyxw)
Expand Down
2 changes: 1 addition & 1 deletion zxcvbn-core/Matcher/Matches/SpatialMatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// <summary>
/// A match made with the <see cref="T:Zxcvbn.Matcher.SpatialMatcher" />. Contains additional information specific to spatial matches.
/// </summary>
internal class SpatialMatch : Match
public class SpatialMatch : Match
{
/// <summary>
/// The name of the keyboard layout used to make the spatial match
Expand Down

0 comments on commit 34f65c5

Please sign in to comment.