diff options
Diffstat (limited to 'setup.go')
| -rw-r--r-- | setup.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -191,7 +191,7 @@ func populateDictionary(dp *dictionaryPopulator) tea.Cmd { POS: strings.ToLower(result.POS), } if len(result.Etymology) > 0 { - entry.Etymology = result.Etymology[0] + entry.Etymology = strings.TrimSpace(result.Etymology[0]) } if len(result.Sounds) > 0 { entry.Sound = result.Sounds[0].IPA |
