Fixed typos in docs

This commit is contained in:
2025-06-23 05:40:20 +02:00
parent a987c0fb34
commit 82f67515e7
7 changed files with 44 additions and 40 deletions

View File

@@ -12,8 +12,7 @@ type ForecastEntity struct {
Wind Wind `json:"wind"`
}
// The Forecast data type, representing the an set
// of ForecastEntity
// The Forecast data type, representing a set of ForecastEntity
type Forecast struct {
Forecast []ForecastEntity
Forecast []ForecastEntity `json:"forecast"`
}