Skip to content

Commit

Permalink
Fix typo (#21883)
Browse files Browse the repository at this point in the history
Fix typo; "sequence with restart" to "sequence will restart".
  • Loading branch information
vanillajonathan committed Jul 31, 2020
1 parent b3f9380 commit 6386c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EFCore.Relational/Metadata/Builders/SequenceBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public virtual SequenceBuilder HasMin(long minimum)
/// Sets whether or not the sequence will start again from the beginning once
/// the maximum value is reached.
/// </summary>
/// <param name="cyclic"> If <see langword="true" />, then the sequence with restart when the maximum is reached. </param>
/// <param name="cyclic"> If <see langword="true" />, then the sequence will restart when the maximum is reached. </param>
/// <returns> The same builder so that multiple calls can be chained. </returns>
public virtual SequenceBuilder IsCyclic(bool cyclic = true)
{
Expand Down

0 comments on commit 6386c3e

Please sign in to comment.