Skip to content

Commit b9fa4f1

Browse files
committed
docs: fix five typos across nomulus docs
manged -> managed (gradle.md), specificed -> specified, alway -> always (proxy-setup.md), miminum -> minimum, succesfully -> successfully (console-endpoints/README.md). Skipped 'OT' occurrences in registrar-faq.md and architecture.md - that's a registry-domain-context abbreviation, not a misspelling. Signed-off-by: Arpit Jain <arpitjain099@gmail.com>
1 parent b8f14fe commit b9fa4f1

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/console-endpoints/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Registry Console Swagger API
22

3-
This is the Swagger-based Registry Console API documentation. The project endpoints documentation in json format can be found in `console-api-swagger.json`, rest of the files in the folder compose Swagger standalone distributive stripped to bare miminum necessary to start the Swagger UI.
3+
This is the Swagger-based Registry Console API documentation. The project endpoints documentation in json format can be found in `console-api-swagger.json`, rest of the files in the folder compose Swagger standalone distributive stripped to bare minimum necessary to start the Swagger UI.
44

55
## How to run Swagger to view the endpoints documentation
66

77
Since Swagger standalone distributive is nothing but a simple static website it's extremely easy to get it started and view the documentation in a matter of seconds.
8-
Note - just a simple opening of `index.html` wouldn't be enough, as with any static website, it'd not be able to handle relative resources requests therefore succesfully render Swagger UI. For this reason it's configured to spin off a simple node.js based http server to serve Swagger UI resources. The following steps required to succesfully start the Swagger UI:
8+
Note - just a simple opening of `index.html` wouldn't be enough, as with any static website, it'd not be able to handle relative resources requests therefore successfully render Swagger UI. For this reason it's configured to spin off a simple node.js based http server to serve Swagger UI resources. The following steps required to succesfully start the Swagger UI:
99

1010
* Install npm dependencies - `npm install`
1111
* Run - `npm run swagger`

docs/gradle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ reason why all test tasks in the :core project contain the exclude pattern
4545
Some Nomulus tests are not hermetic: they modify global state, but do not clean
4646
up on completion. This becomes a problem with Gradle. In the beginning we forced
4747
Gradle to run every test class in a new process, and incurred heavy overheads.
48-
Since then, we have fixed some tests, and manged to divide all tests into two
48+
Since then, we have fixed some tests, and managed to divide all tests into two
4949
suites that do not have intra-suite conflicts (`fragileTest` and `standardTest`)

docs/proxy-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -565,10 +565,10 @@ fill its role. Similarly a node may be shut down due to under-utilization
565565
(thanks to GKE autoscaling). In order to reliably route incoming traffic to the
566566
proxy, a
567567
[NodePort](https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport)
568-
service is used to expose the proxy on specificed port(s) on every running node
568+
service is used to expose the proxy on specified port(s) on every running node
569569
in the cluster, even if the proxy does not run on a VM (in which case the
570570
traffic is routed to a VM that has the proxy running). With a [NodePort]
571-
service, the load balancer can alway route traffic to any healthy node, and
571+
service, the load balancer can always route traffic to any healthy node, and
572572
kubernetes takes care of delivering that traffic to a servicing proxy pod.
573573

574574
To deploy the NodePort service:

0 commit comments

Comments
 (0)