Skip to content

Commit

Permalink
improve movie descs
Browse files Browse the repository at this point in the history
  • Loading branch information
se-omar committed Jan 15, 2024
1 parent 7cc1c97 commit 65ef71c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions movie.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func addMovieLookup() {
AddFuncLookup("movie", Info{
Display: "Movie",
Category: "movie",
Description: "Random Movie data set",
Description: "A story told through moving pictures and sound",
Example: `{
"name": "Psycho",
"genre": "Mystery"
Expand All @@ -49,7 +49,7 @@ func addMovieLookup() {
AddFuncLookup("moviename", Info{
Display: "Movie Name",
Category: "movie",
Description: "Random movie name",
Description: "Title or name of a specific film used for identification and reference",
Example: "The Matrix",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -60,7 +60,7 @@ func addMovieLookup() {
AddFuncLookup("moviegenre", Info{
Display: "Genre",
Category: "movie",
Description: "Random movie genre",
Description: "Category that classifies movies based on common themes, styles, and storytelling approaches",
Example: "Action",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit 65ef71c

Please sign in to comment.