Skip to content

Commit

Permalink
Grammar change
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Oct 25, 2022
1 parent e77c5d4 commit 6f78678
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Lib/Data/CommandInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ export interface ParameterInfo {

/**The optional options for a given parameter.*/
export interface ParameterOptions {
/**if defined, these values are always accepted, no evualation anymore required.*/
/**if defined, these values are always accepted, no evaluation anymore required.*/
acceptedValues?: string[];

/**Minimum value or amount of numbers.*/
minimum?: number;
/**Maximum value or amount of numbers.*/
maximum?: number;

/**Wheter or not this parameter is aimed at players only, excluding entities .*/
/**Whether or not this parameter is aimed at players only, excluding entities .*/
playerOnly?: boolean;
/**Wheter or not fake / dummy players are allowed.*/
/**Whether or not fake / dummy players are allowed.*/
allowFakePlayers?: boolean;

/**If the wild card: '*' is allowed.*/
Expand Down

0 comments on commit 6f78678

Please sign in to comment.