Skip to content

Commit

Permalink
Merge pull request #339 from se-omar/app-descs
Browse files Browse the repository at this point in the history
improve app descs
  • Loading branch information
brianvoe committed Jan 18, 2024
2 parents 0eb6fea + 278362d commit 0994b7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.go
Expand Up @@ -65,7 +65,7 @@ func addAppLookup() {
AddFuncLookup("appname", Info{
Display: "App Name",
Category: "app",
Description: "Name for an application",
Description: "Software program designed for a specific purpose or task on a computer or mobile device",
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: "Version number for an app, following Semantic versioning format",
Description: "Particular release of an application in 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: "Name for an app developer or authoring entity",
Description: "Person or group creating and developing an application",
Example: "Qado Energy, Inc.",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit 0994b7f

Please sign in to comment.