From 130cf5c8c6ace9410ef9f2e24272b7413b0235bc Mon Sep 17 00:00:00 2001 From: Omar Ayman Date: Mon, 15 Jan 2024 19:25:43 +0200 Subject: [PATCH] improve language descs --- languages.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/languages.go b/languages.go index b3cdfbf1..43e0b877 100644 --- a/languages.go +++ b/languages.go @@ -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) { @@ -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) { @@ -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) { @@ -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) {