diff --git a/README.md b/README.md index 035c25f..52ef8bc 100644 --- a/README.md +++ b/README.md @@ -489,10 +489,10 @@ import pytz ```python = pytz.utc # UTC timezone. = pytz.timezone('/') # Timezone from 'Continent/City' string. - =
.astimezone() # Converts datetime to passed timezone. - = .replace(tzinfo=) # Changes timezone without conversion. - = .utcoffset() # Returns timezone's current offset from UTC. - = .dst() # Returns daylight saving time offset. + =
.astimezone() # Datetime converted to passed timezone. + = .replace(tzinfo=) # Unconverted object with new timezone. + = .utcoffset() # Timezone's current offset from UTC. + = .dst() # Daylight saving time offset. ``` ### Encode