Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: fix some typos #587

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyvo/dal/scs.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def describe(self):

class SCSQuery(DALQuery):
"""
a class for preparing an query to a Cone Search service. Query constraints
a class for preparing a query to a Cone Search service. Query constraints
are added via its service type-specific methods. The various execute()
functions will submit the query and return the results.

Expand Down
2 changes: 1 addition & 1 deletion pyvo/dal/sia.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def describe(self):

class SIAQuery(DALQuery):
"""
a class for preparing an query to an SIA service. Query constraints
a class for preparing a query to an SIA service. Query constraints
are added via its service type-specific methods. The various execute()
functions will submit the query and return the results.

Expand Down
2 changes: 1 addition & 1 deletion pyvo/dal/sla.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def describe(self):

class SLAQuery(DALQuery):
"""
a class for preparing an query to an SLA service. Query constraints
a class for preparing a query to an SLA service. Query constraints
are added via its service type-specific methods. The various execute()
functions will submit the query and return the results.

Expand Down
2 changes: 1 addition & 1 deletion pyvo/dal/ssa.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def describe(self):

class SSAQuery(DALQuery):
"""
a class for preparing an query to an SSA service. Query constraints
a class for preparing a query to an SSA service. Query constraints
are added via its service type-specific properties and methods. Once
all the constraints are set, one of the various execute() functions
can be called to submit the query and return the results.
Expand Down
4 changes: 2 additions & 2 deletions pyvo/dal/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -1011,8 +1011,8 @@ def fetch_result(self):

class TAPQuery(DALQuery):
"""
a class for preparing an query to an TAP service. Query constraints
are added via its service type-specific methods. The various execute()
a class for preparing a query to a TAP service. Query constraints
are added via service type-specific methods. The various execute()
functions will submit the query and return the results.

The base URL for the query, which controls where the query will be sent
Expand Down