aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/solar_python.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/solar_python.py b/src/solar_python.py
index 6e93621..daa2330 100644
--- a/src/solar_python.py
+++ b/src/solar_python.py
@@ -605,9 +605,9 @@ def future_equinox(t = None):
'''
Predict the time point of the next equinox
- @param t:float? The time in Julian Centuries, `None`
- for the current time
- @return :float The calculated time point
+ @param t:float? The time in Julian Centuries, `None`
+ for the current time
+ @return :float The calculated time point
'''
return future_past_equinox(0.01 / 2000, t)
@@ -616,9 +616,9 @@ def past_equinox(t = None):
'''
Predict the time point of the previous equinox
- @param t:float? The time in Julian Centuries, `None`
- for the current time
- @return :float The calculated time point
+ @param t:float? The time in Julian Centuries, `None`
+ for the current time
+ @return :float The calculated time point
'''
return future_past_equinox(0.01 / -2000, t)