diff --git a/README.md b/README.md index 3a91684..5a072d8 100644 --- a/README.md +++ b/README.md @@ -656,7 +656,7 @@ from dateutil.tz import UTC, tzlocal, gettz, datetime_exists, resolve_imaginary ### Arithmetics ```python = ± # Returned datetime can fall into missing hour. - = - # Returns the difference, ignoring time jumps. + = - # Returns the difference. Ignores time jumps. = - # Ignores time jumps if they share tzinfo object. = * # Also: = abs() and = ±% . = / # How many weeks/years there are in TD. Also //. diff --git a/index.html b/index.html index 8c76e65..d11dfc4 100644 --- a/index.html +++ b/index.html @@ -582,7 +582,7 @@ Point(x=1, y=2
  • For abbreviated weekday and month use '%a' and '%b'.
  • Arithmetics

    <D/DT>   = <D/DT>  ± <TD>                   # Returned datetime can fall into missing hour.
    -<TD>     = <D/DTn> - <D/DTn>                # Returns the difference, ignoring time jumps.
    +<TD>     = <D/DTn> - <D/DTn>                # Returns the difference. Ignores time jumps.
     <TD>     = <DTa>   - <DTa>                  # Ignores time jumps if they share tzinfo object.
     <TD>     = <TD>    * <real>                 # Also: <TD> = abs(<TD>) and <TD> = <TD> ±% <TD>.
     <float>  = <TD>    / <TD>                   # How many weeks/years there are in TD. Also //.