Skip to content

Commit ad56feb

Browse files
committed
DOC: Fix "an Twined" typo
skipci
1 parent 0508e48 commit ad56feb

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

docs/source/creating_services.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ return answers. They can run locally on any machine or be deployed to the cloud.
99
- The language of the entrypoint must by ``python3`` (you can call processes using other languages within this though)
1010

1111

12-
Anatomy of an Twined service
12+
Anatomy of a Twined service
1313
===========================
14-
An Twined service is defined by the following files (located in the repository root by default).
14+
A Twined service is defined by the following files (located in the repository root by default).
1515

1616
app.py
1717
------

docs/source/datafile.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Datafile
2121
Use a datafile to work with a file if you want to:
2222

2323
- Read/write to local and cloud files in the same way
24-
- Include it in a :doc:`dataset <dataset>` that can be sent to an Twined service for processing
24+
- Include it in a :doc:`dataset <dataset>` that can be sent to a Twined service for processing
2525
- Add metadata to it for future sorting and filtering
2626

2727
Key features

docs/source/dataset.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Dataset
2323
- Group together a set of files that naturally relate to each other e.g. a timeseries that's been split into
2424
multiple files.
2525
- Add metadata to it for future sorting and filtering
26-
- Include it in a :doc:`manifest <manifest>` with other datasets and send them to an Twined service for processing
26+
- Include it in a :doc:`manifest <manifest>` with other datasets and send them to a Twined service for processing
2727

2828

2929
Key features

docs/source/deploying_services.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services for you or if you are only asking questions to existing Twined services
1919

2020
What deployment enables
2121
-----------------------
22-
Deploying an Twined service to Google Cloud Run means it:
22+
Deploying a Twined service to Google Cloud Run means it:
2323

2424
* Is deployed as a docker container
2525
* Is ready to be asked questions by any other Twined service that has the correct permissions (you can control this)

docs/source/manifest.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Manifest
88

99
:mod:`Manifest <octue.resources.manifest.Manifest>`
1010
A set of related cloud and/or local :doc:`datasets <dataset>`, metadata, and helper methods. Typically produced
11-
by or needed for processing by an Twined service.
11+
by or needed for processing by a Twined service.
1212

1313
.. tip::
1414

15-
Use a manifest to send :doc:`datasets <dataset>` to an Twined service as a question (for processing) - the service
15+
Use a manifest to send :doc:`datasets <dataset>` to a Twined service as a question (for processing) - the service
1616
will send an output manifest back with its answer if the answer includes output datasets.
1717

1818

@@ -38,7 +38,7 @@ Make a clear grouping of datasets needed for a particular analysis.
3838
3939
Send datasets to a service
4040
--------------------------
41-
Get an Twined service to analyse data for you as part of a larger analysis.
41+
Get a Twined service to analyse data for you as part of a larger analysis.
4242

4343
.. code-block:: python
4444
@@ -56,7 +56,7 @@ See :doc:`here <asking_questions>` for more information.
5656

5757
Receive datasets from a service
5858
-------------------------------
59-
Access output datasets from an Twined service from the cloud when you're ready.
59+
Access output datasets from a Twined service from the cloud when you're ready.
6060

6161
.. code-block:: python
6262

docs/source/services.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Currently, all of them are related to wind energy. Here's a quick glossary of te
1919
its answer, and so on.
2020

2121
Parent
22-
An Twined service that asks a question to another Twined service (a child).
22+
A Twined service that asks a question to another Twined service (a child).
2323

2424
Asking a question
2525
Sending data (input values and/or an input manifest) to a child for processing/analysis.
@@ -47,7 +47,7 @@ They look like ``namespace/name:tag`` where the tag is often a semantic version
4747
.. admonition:: Definitions
4848

4949
Service revision
50-
A specific instance of an Twined service that can be individually addressed. The revision could correspond to a
50+
A specific instance of a Twined service that can be individually addressed. The revision could correspond to a
5151
version of the service, a dynamic development branch for it, or a deliberate duplication or variation of it.
5252

5353
.. _sruid_definition:

docs/source/updating_services.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. _updating_services:
22

3-
Updating an Twined service
3+
Updating a Twined service
44
=========================
55

66
This page describes how to update an existing, deployed Twined service - in other words, how to deploy a new Twined

0 commit comments

Comments
 (0)