From d9644ea101b5114a554557b02e656444bbd93729 Mon Sep 17 00:00:00 2001 From: Omar Ayman Date: Tue, 16 Jan 2024 17:55:53 +0200 Subject: [PATCH] improve product descs --- product.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/product.go b/product.go index 635cbc33..7483ecbe 100644 --- a/product.go +++ b/product.go @@ -162,7 +162,7 @@ func addProductLookup() { AddFuncLookup("product", Info{ Display: "Product", Category: "product", - Description: "Random product info", + Description: "An item created for sale or use", Example: `{ "name": "olive copper monitor", "description": "Backwards caused quarterly without week it hungry thing someone him regularly. Whomever this revolt hence from his timing as quantity us these yours.", @@ -188,7 +188,7 @@ func addProductLookup() { AddFuncLookup("productname", Info{ Display: "Product Name", Category: "product", - Description: "Random product name", + Description: "Distinctive title or label assigned to a product for identification and marketing", Example: "olive copper monitor", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -199,7 +199,7 @@ func addProductLookup() { AddFuncLookup("productdescription", Info{ Display: "Product Description", Category: "product", - Description: "Random product description", + Description: "Explanation detailing the features and characteristics of a product", Example: "Backwards caused quarterly without week it hungry thing someone him regularly. Whomever this revolt hence from his timing as quantity us these yours.", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -210,7 +210,7 @@ func addProductLookup() { AddFuncLookup("productcategory", Info{ Display: "Product Category", Category: "product", - Description: "Random product category", + Description: "Classification grouping similar products based on shared characteristics or functions", Example: "clothing", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -221,7 +221,7 @@ func addProductLookup() { AddFuncLookup("productfeature", Info{ Display: "Product Feature", Category: "product", - Description: "Random product feature", + Description: "Specific characteristic of a product that distinguishes it from others products", Example: "ultra-lightweight", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -232,7 +232,7 @@ func addProductLookup() { AddFuncLookup("productmaterial", Info{ Display: "Product Material", Category: "product", - Description: "Random product material", + Description: "The substance from which a product is made, influencing its appearance, durability, and properties", Example: "brass", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -243,7 +243,7 @@ func addProductLookup() { AddFuncLookup("productupc", Info{ Display: "Product UPC", Category: "product", - Description: "Random product UPC", + Description: "Standardized barcode used for product identification and tracking in retail and commerce", Example: "012780949980", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {