Skip to content

Commit 402deb0

Browse files
snbiancoCopilot
andcommitted
Typos
Co-authored-by: Copilot <copilot@github.com>
1 parent aada2db commit 402deb0

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

astroquery/mast/catalog_collection.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,8 @@ def _fetch_catalogs(self):
310310
311311
Returns
312312
-------
313-
list of str
314-
List of catalog names.
313+
`~astropy.table.Table`
314+
A table containing the catalog names and descriptions for this collection.
315315
"""
316316
log.debug(f"Fetching available tables for collection '{self.name}' from MAST TAP service.")
317317
query = "SELECT TOP 5000 table_name, description FROM tap_schema.tables"
@@ -334,8 +334,9 @@ def _fetch_adql_supported_functions(self):
334334
335335
Returns
336336
-------
337-
list
338-
A list of supported ADQL functions.
337+
set
338+
A set of supported ADQL geometry functions (e.g. "POINT", "CIRCLE", "CONTAINS", etc.) for
339+
this collection's TAP service.
339340
"""
340341
adql_functions = ["CIRCLE", "POLYGON", "POINT", "CONTAINS", "INTERSECTS"]
341342
supported = set()

astroquery/mast/tests/test_mast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def run_sync_mock(query, **kwargs):
322322
# Queries to get column metadata
323323
filename = data_path(DATA_FILES['tap_columns'])
324324
elif 'WHERE' in query:
325-
# Queries with results, keep in mind this is not meaninful and results won't match the query
325+
# Queries with results, keep in mind this is not meaningful and results won't match the query
326326
filename = data_path(DATA_FILES['tap_results'])
327327
votable = parse(filename)
328328

0 commit comments

Comments
 (0)