Skip to content

Commit da62738

Browse files
committed
fix inline
1 parent ff2a938 commit da62738

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

astroplan/constraints.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -946,9 +946,11 @@ def __init__(self, min=None, boolean_constraint=True):
946946
"""
947947
Parameters
948948
----------
949-
min : `~astropy.units.Quantity` or `None` (optional)
950-
Minimum acceptable distance to meridian. `None`indicates no limit.
951-
boolean_contstraint : bool
949+
min : `~astropy.units.Quantity` or `None`, optional
950+
Minimum acceptable distance to meridian.
951+
`None` indicates no limit.
952+
953+
boolean_constraint : bool
952954
953955
Examples
954956
--------
@@ -957,7 +959,7 @@ def __init__(self, min=None, boolean_constraint=True):
957959
>>> constraint = NearMeridianConstraint(min=3*u.deg)
958960
959961
This can be useful for observations using German-Equatorial Mounts, to avoid
960-
flipping the side of pier during exposures.
962+
flipping the side of the pier during exposures.
961963
"""
962964
self.min = min if min is not None else 0*u.hourangle
963965
self.boolean_constraint = boolean_constraint

0 commit comments

Comments
 (0)