Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
fix - Fixed antonyms list being an object
Browse files Browse the repository at this point in the history
---

We've fixed the antonyms list being a list of objects that are really "strings."

---

Type: fix
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Oct 25, 2023
1 parent ab436de commit d3906cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dictify/DictionaryWord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public partial class DefinitionType
/// List of antonyms based on the definition
/// </summary>
[JsonProperty("antonyms")]
public List<object> Antonyms { get; set; }
public List<string> Antonyms { get; set; }

/// <summary>
/// Example in sentence
Expand Down

0 comments on commit d3906cb

Please sign in to comment.