Skip to content

Commit 70c49c0

Browse files
committed
Never mind, we don't do an rst_epilog for the API docs right now
1 parent 9cbd52c commit 70c49c0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

astroquery/alma/core.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,14 +210,14 @@ def _gen_sql(payload):
210210
def get_enhanced_table(result):
211211
"""
212212
Returns an enhanced table with quantities instead of values and regions for footprints.
213-
Note that this function is dependent on the ``astropy`` - affiliated `regions`_ package.
213+
Note that this function is dependent on the ``astropy`` - affiliated ``regions`` package.
214214
"""
215215
try:
216216
import regions
217217
except ImportError:
218218
print(
219219
"Could not import astropy-regions, which is a requirement for get_enhanced_table function in alma."
220-
"Please refer to the `regions`_ documentation for installation instructions.")
220+
"Please refer to the ``regions`` documentation for installation instructions.")
221221
raise
222222

223223
def _parse_stcs_string(input):
@@ -494,7 +494,7 @@ def query_object_async(self, object_name, *, public=True,
494494
calibration, None to return both
495495
enhanced_results : bool
496496
True to return a table with quantities instead of just values. It
497-
also returns the footprint as `regions`_ objects.
497+
also returns the footprint as ``regions`` objects.
498498
payload : dict
499499
Dictionary of additional keywords. See `help`.
500500
"""
@@ -528,7 +528,7 @@ def query_region_async(self, coordinate, radius, *, public=True,
528528
Dictionary of additional keywords. See `help`.
529529
enhanced_results : bool
530530
True to return a table with quantities instead of just values. It
531-
also returns the footprints as `regions`_ objects.
531+
also returns the footprints as ``regions`` objects.
532532
"""
533533
rad = radius
534534
if not isinstance(radius, u.Quantity):
@@ -571,7 +571,7 @@ def query_async(self, payload, *, public=True, science=True,
571571
Cap on the amount of records returned. Default is no limit.
572572
enhanced_results : bool
573573
True to return a table with quantities instead of just values. It
574-
also returns the footprints as `regions`_ objects.
574+
also returns the footprints as ``regions`` objects.
575575
576576
Returns
577577
-------

0 commit comments

Comments
 (0)