Skip to content

Commit

Permalink
Fix errant plural in docstring showing UTC tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-rhodes committed Feb 1, 2024
1 parent 3047511 commit bffacca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyfield/timelib.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ def J(self):

@reify
def utc(self):
"""A tuple ``(year, month, day, hour, minute, seconds)`` in UTC."""
"""A tuple ``(year, month, day, hour, minute, second)`` in UTC."""
utc = self._utc_tuple(0.0)
return (array(utc).view(CalendarArray) if self.shape
else CalendarTuple(*utc))
Expand Down

0 comments on commit bffacca

Please sign in to comment.