Skip to content

Commit

Permalink
Merge pull request #340 from se-omar/auth-descs
Browse files Browse the repository at this point in the history
improve auth descs
  • Loading branch information
brianvoe committed Jan 19, 2024
2 parents 158fa67 + fe770d6 commit 2ca416e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auth.go
Expand Up @@ -106,7 +106,7 @@ func addAuthLookup() {
AddFuncLookup("username", Info{
Display: "Username",
Category: "auth",
Description: "Generates a random username",
Description: "Unique identifier assigned to a user for accessing an account or system",
Example: "Daniel1364",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -117,7 +117,7 @@ func addAuthLookup() {
AddFuncLookup("password", Info{
Display: "Password",
Category: "auth",
Description: "Generates a random password",
Description: "Secret word or phrase used to authenticate access to a system or account",
Example: "EEP+wwpk 4lU-eHNXlJZ4n K9%v&TZ9e",
Output: "string",
Params: []Param{
Expand Down

0 comments on commit 2ca416e

Please sign in to comment.