Skip to content

Commit ca3052f

Browse files
authored
Merge pull request #119 from epics-containers/typo-fix
Fix some typos (adds Grammarly extension)
2 parents 499c231 + 10e8ae4 commit ca3052f

18 files changed

+32
-25
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"redhat.vscode-yaml",
2525
"ryanluker.vscode-coverage-gutters",
2626
"charliermarsh.ruff",
27-
"ms-azuretools.vscode-docker"
27+
"ms-azuretools.vscode-docker",
28+
"znck.grammarly"
2829
]
2930
}
3031
},

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,10 @@
88
"[python]": {
99
"editor.defaultFormatter": "charliermarsh.ruff",
1010
},
11+
"grammarly.selectors": [
12+
{
13+
"language": "markdown",
14+
"scheme": "file"
15+
}
16+
],
1117
}

docs/explanations/changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ It is easy to determine which template version and thus which `ec` SemVer versio
6565
Types of Changes
6666
----------------
6767

68-
Changes to the framework are likely to be initiated in one the places described under the following headings. As far as possible such changes will be backwards compatible going forward, and if they are not then a major version release will be made.
68+
Changes to the framework are likely to be initiated in one of the places described under the following headings. As far as possible such changes will be backwards compatible going forward, and if they are not then a major version release will be made.
6969

7070
### ibek
7171

docs/explanations/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
```{include} ../overview.md
88
```
99

10-
See below for more detail on each of these.
10+
See below for more details on each of these.
1111

1212
## Concepts
1313

@@ -231,7 +231,7 @@ There are these types of CI:
231231
This project initially targets x86_64 Linux Soft IOCs and RTEMS IOC running
232232
on MVME5500 hardware. Soft IOCs that require access to hardware on the
233233
server (e.g. USB or PCIe) will be supported by mounting the hardware into
234-
the container (theses IOCS will not support Kubernetes failover).
234+
the container (these IOCS will not support Kubernetes failover).
235235

236236
Other linux architectures could be added to the Kubernetes cluster. We have
237237
tested arm64 native builds and will add this as a supported architecture

docs/explanations/kubernetes_cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The separate clusters allow us to have separate:
4747
- administrative domain
4848
- performance domain
4949

50-
The down side is that we have to manage multiple clusters. There is a lot of
50+
The downside is that we have to manage multiple clusters. There is a lot of
5151
tooling available to help with this, as multi-cluster using cloud providers is
5252
quite a common pattern. We are currently investigating approaches to multi-cluster
5353
management.

docs/explanations/net_protocols.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ between an external client and a kubernetes Pod:
2929

3030
- use of broadcast packets
3131
- negotiating an ephemeral port in the application layer (NAT cannot route to
32-
a such a port since it looks like a new connection)
32+
such a port since it looks like a new connection)
3333

3434
When prototyping IOCs in Kubernetes we found that the following protocols
3535
had issues for the above reasons:
@@ -57,7 +57,7 @@ is a solution for all protocols we will need.
5757

5858
## Solution - hostNetwork
5959

60-
To get round these issues and all possible future network issues we:
60+
To get around these issues and all possible future network issues we:
6161

6262
- Use remote worker nodes that sit in the beamline subnet
6363
- We use hostNetwork=true which bypasses the CNI and gives Pods direct access

docs/explanations/repositories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ that can be used by multiple IOC instances in multiple domains. Because
2828
Generic IOCs are containerized and not facility specific, they should work
2929
anywhere. Therefore these make sense as public repositories.
3030

31-
There may be cases where the this is not possible, for example if the
31+
There may be cases where this is not possible, for example if the
3232
Generic IOC relies on proprietary support modules with restricted licensing.
3333

3434
The existing Continuous

docs/how-to/ibek-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is draft only and out of date. It will be updated soon.
66

77
The ibek-defs repository contains ibek support yaml. Here is an example
88
procedure for local testing of changes to support yaml in ibek-defs
9-
along side IOC yaml that uses it.
9+
alongside IOC yaml that uses it.
1010

1111
(Suggest you do this inside a dev-e7 workspace devcontainer)
1212

docs/reference/environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ be adjusted to suit your domain. The variables are as follows:
6767
(at least for common functions).
6868

6969
- **EC_DEBUG**: causes the `ec` command to output debug information for all
70-
commands. For more targetted debugging you can use `ec -d ...`.
70+
commands. For more targeted debugging you can use `ec -d ...`.
7171

7272
## Installation of `ec`
7373

docs/tutorials/create_beamline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ which to place the new repo. If you do not have one then follow GitHub's
3737

3838
Log in to your account by going here <https://github.com/login>.
3939

40-
You will also need to setup ssh keys to authenticate to github from git. See
40+
You will also need to set up ssh keys to authenticate to Github from git. See
4141
[about ssh].
4242

4343
(create-new-beamline-local)=
4444
## Create a New Beamline Repo for local deployments
4545

46-
Here we will use the copy the ec services template repository to make a new beamline.
46+
Here we will use the ec services template repository to make a new beamline.
4747

4848
NOTE: for these tutorials we will use your personal GitHub Account to
4949
store everything we do, all source repositories and container images. For

0 commit comments

Comments
 (0)