lint: refactor SlowMode -> SlowModeInterval

this was the name change i always wanted
This commit is contained in:
Christopher F
2018-09-11 18:28:31 -04:00
parent 97d17cfdda
commit 232f525b59
8 changed files with 11 additions and 11 deletions

View File

@@ -356,8 +356,8 @@ namespace Discord.API
Preconditions.NotNull(args, nameof(args));
Preconditions.AtLeast(args.Position, 0, nameof(args.Position));
Preconditions.NotNullOrEmpty(args.Name, nameof(args.Name));
Preconditions.AtLeast(args.SlowMode, 0, nameof(args.SlowMode));
Preconditions.AtMost(args.SlowMode, 120, nameof(args.SlowMode));
Preconditions.AtLeast(args.SlowModeInterval, 0, nameof(args.SlowModeInterval));
Preconditions.AtMost(args.SlowModeInterval, 120, nameof(args.SlowModeInterval));
options = RequestOptions.CreateOrClone(options);
var ids = new BucketIds(channelId: channelId);