Skip to content

Commit

Permalink
Merge pull request #357 from privacy-scaling-explorations/fix/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
vplasencia authored Jan 18, 2024
2 parents d9477be + 145b1f9 commit a5c59a8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libs/credentials/src/validators/githubFollowers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const validator: Validator = {
},

/**
* It checks if a user has more then 'minFollowers' followers.
* It checks if a user has greater than or equal to 'minFollowers' followers.
* @param criteria The criteria used to check user's credentials.
* @param context Utility functions and other context variables.
* @returns True if the user meets the criteria.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const validator: Validator = {
},

/**
* It checks if a user has more then 'minStars' stars in their personal repository.
* It checks if a user has greater than or equal to 'minStars' stars in their personal repository.
* @param criteria The criteria used to check user's credentials.
* @param context Utility functions and other context variables.
* @returns True if the user meets the criteria.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const validator: Validator = {
},

/**
* It checks if a user has more then 'minCommits' commits in a specific repo.
* It checks if a user has greater than or equal to 'minCommits' commits in a specific repo.
* @param criteria The criteria used to check user's credentials.
* @param context Utility functions and other context variables.
* @returns True if the user meets the criteria.
Expand Down
2 changes: 1 addition & 1 deletion libs/credentials/src/validators/twitterFollowers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const validator: Validator = {
},

/**
* It checks if a user has more then 'minFollowers' followers.
* It checks if a user has greater than or equal to 'minFollowers' followers.
* @param criteria The criteria used to check user's credentials.
* @param context Utility functions and other context variables.
* @returns True if the user meets the criteria.
Expand Down

0 comments on commit a5c59a8

Please sign in to comment.