Skip to content

Commit

Permalink
Merge pull request #1026 from hugovk/patch-1
Browse files Browse the repository at this point in the history
Fix Easter typos
  • Loading branch information
pganssle committed Apr 4, 2020
2 parents 17456dd + d682044 commit c175137
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dateutil/easter.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""
This module offers a generic easter computing method for any given year, using
This module offers a generic Easter computing method for any given year, using
Western, Orthodox or Julian algorithms.
"""

Expand All @@ -21,15 +21,15 @@ def easter(year, method=EASTER_WESTERN):
quoted in "Explanatory Supplement to the Astronomical
Almanac", P. Kenneth Seidelmann, editor.
This algorithm implements three different easter
This algorithm implements three different Easter
calculation methods:
1 - Original calculation in Julian calendar, valid in
dates after 326 AD
2 - Original method, with date converted to Gregorian
calendar, valid in years 1583 to 4099
3 - Revised method, in Gregorian calendar, valid in
years 1583 to 4099 as well
1. Original calculation in Julian calendar, valid in
dates after 326 AD
2. Original method, with date converted to Gregorian
calendar, valid in years 1583 to 4099
3. Revised method, in Gregorian calendar, valid in
years 1583 to 4099 as well
These methods are represented by the constants:
Expand Down

0 comments on commit c175137

Please sign in to comment.