Browse Source

Apply suggestions from code review

Co-authored-by: Quin Lynch <49576606+quinchs@users.noreply.github.com>
pull/2136/head
Cenk Ergen GitHub 3 years ago
parent
commit
0814f5cf3a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.Core/Interactions/IRouteMatchContainer.cs

+ 2
- 2
src/Discord.Net.Core/Interactions/IRouteMatchContainer.cs View File

@@ -10,12 +10,12 @@ namespace Discord
/// <summary> /// <summary>
/// Gets the collection of the captured route segments. /// Gets the collection of the captured route segments.
/// </summary> /// </summary>
public IEnumerable<IRouteSegmentMatch> SegmentMatches { get; }
IEnumerable<IRouteSegmentMatch> SegmentMatches { get; }


/// <summary> /// <summary>
/// Sets the <see cref="SegmentMatches"/> propert /// Sets the <see cref="SegmentMatches"/> propert
/// </summary> /// </summary>
/// <param name="segmentMatches">The collection of captured route segments.</param> /// <param name="segmentMatches">The collection of captured route segments.</param>
public void SetSegmentMatches(IEnumerable<IRouteSegmentMatch> segmentMatches);
void SetSegmentMatches(IEnumerable<IRouteSegmentMatch> segmentMatches);
} }
} }

Loading…
Cancel
Save