Skip to content

Commit

Permalink
Merge pull request #285 from se-omarayman/app-descriptions
Browse files Browse the repository at this point in the history
improve app descriptions
  • Loading branch information
brianvoe committed Jan 11, 2024
2 parents 1c30fea + 909b52f commit 2429f6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func addAppLookup() {
AddFuncLookup("appname", Info{
Display: "App Name",
Category: "app",
Description: "Random app name",
Description: "Generates a random name for an application",
Example: "Parkrespond",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -76,7 +76,7 @@ func addAppLookup() {
AddFuncLookup("appversion", Info{
Display: "App Version",
Category: "app",
Description: "Random app version",
Description: "Generates a random version number for an app, following Semantic versioning format",
Example: "1.12.14",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -87,7 +87,7 @@ func addAppLookup() {
AddFuncLookup("appauthor", Info{
Display: "App Author",
Category: "app",
Description: "Random app author",
Description: "Generates a random name for an app developer or authoring entity",
Example: "Qado Energy, Inc.",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit 2429f6b

Please sign in to comment.