Skip to content

Commit

Permalink
Merge pull request #313 from se-omar/languages-descs
Browse files Browse the repository at this point in the history
improve language descs
  • Loading branch information
brianvoe authored Jan 15, 2024
2 parents 56a12d4 + 130cf5c commit c3e0981
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions languages.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func addLanguagesLookup() {
AddFuncLookup("language", Info{
Display: "Language",
Category: "language",
Description: "Random language",
Description: "System of communication using symbols, words, and grammar to convey meaning between individuals",
Example: "Kazakh",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -59,7 +59,7 @@ func addLanguagesLookup() {
AddFuncLookup("languageabbreviation", Info{
Display: "Language Abbreviation",
Category: "language",
Description: "Random abbreviated language",
Description: "Shortened form of a language's name",
Example: "kk",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -70,7 +70,7 @@ func addLanguagesLookup() {
AddFuncLookup("languagebcp", Info{
Display: "Language BCP",
Category: "language",
Description: "Random language BCP (Best Current Practices)",
Description: "Set of guidelines and standards for identifying and representing languages in computing and internet protocols",
Example: "en-US",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -81,7 +81,7 @@ func addLanguagesLookup() {
AddFuncLookup("programminglanguage", Info{
Display: "Programming Language",
Category: "language",
Description: "Random programming language",
Description: "Formal system of instructions used to create software and perform computational tasks",
Example: "Go",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit c3e0981

Please sign in to comment.