Skip to content

Commit 04482ad

Browse files
authored
chore: fix spelling (#327)
1 parent 30746d1 commit 04482ad

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

knative-build/archive/app-deployment-with-knative-0.2.2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ default 1 4d
338338

339339
**Note: We are deploying this application under `default` namespace. We had deployed `helloworld-go` under the same `default` namespace. We have noticed a limitation with Kubernetes on Docker which restricts number of pods under one single namespace. Please make sure that there are no pods exist under `default` and if they do, delete them all using `kubectl delete --all pods --namespace=default`**
340340

341-
Create a file named `service.yaml` and copy the following defintion. Make sure to replace `{DOCKER_USERNAME}` with your own Docker Hub username:
341+
Create a file named `service.yaml` and copy the following definition. Make sure to replace `{DOCKER_USERNAME}` with your own Docker Hub username:
342342

343343
```yaml
344344
apiVersion: serving.knative.dev/v1alpha1

knative-build/runtimes/java/core/java8/proxy/profiles/base/tests/helloworld/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ curl -H "Host: java-helloworld.default.example.com" -X POST http://localhost/
3333

3434
#### Initialize the runtime
3535

36-
You have an option to initialize the runtime with the function and other configuration data if its not initialized (i.e. built using [build-without-code.yaml.tmpl](build-without-code.yaml.tmpl))
36+
You have an option to initialize the runtime with the function and other configuration data if it's not initialized (i.e. built using [build-without-code.yaml.tmpl](build-without-code.yaml.tmpl))
3737

3838
```
3939
curl -H "Host: java-helloworld.default.example.com" -d "@knative-data-init.json" -H "Content-Type: application/json" http://localhost/

knative-build/runtimes/java/core/java8/proxy/profiles/base/tests/helloworldwithparams/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ curl -H "Host: java-helloworld-with-params.default.example.com" -d '{"value": {"
3333

3434
#### Initialize the runtime
3535

36-
You have an option to initialize the runtime with the function and other configuration data if its not initialized (i.e. built using [build-without-code.yaml.tmpl](build-without-code.yaml.tmpl))
36+
You have an option to initialize the runtime with the function and other configuration data if it's not initialized (i.e. built using [build-without-code.yaml.tmpl](build-without-code.yaml.tmpl))
3737

3838
```
3939
curl -H "Host: java-helloworld-with-params.default.example.com" -d "@knative-data-init.json" -H "Content-Type: application/json" http://localhost/

knative-build/runtimes/java/core/java8/proxy/profiles/base/tests/helloworldwithparamsfromenv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ curl -H "Host: java-helloworld-with-params-from-env.default.example.com" -X POST
3333

3434
#### Initialize the runtime
3535

36-
You have an option to initialize the runtime with the function and other configuration data if its not initialized (i.e. built using [build-without-code.yaml.tmpl](build-without-code.yaml.tmpl))
36+
You have an option to initialize the runtime with the function and other configuration data if it's not initialized (i.e. built using [build-without-code.yaml.tmpl](build-without-code.yaml.tmpl))
3737

3838
```
3939
curl -H "Host: java-helloworld-with-params-from-env.default.example.com" -d "@knative-data-init.json" -H "Content-Type: application/json" http://localhost/

knative-build/runtimes/java/core/java8/proxy/src/main/java/org/apache/openwhisk/runtime/java/action/Proxy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ private class RunHandler implements HttpHandler {
161161
public void handle(HttpExchange t) throws IOException {
162162
long startTime = Debug.start();
163163
if (loader == null) {
164-
// check if the Jar file contents are set in the enviorment
164+
// check if the Jar file contents are set in the environment
165165
// OW_AUTO_INIT: Jar file with absolute/relative path
166166
// OW_AUTO_INIT_MAIN: name of the function in the "OW_AUTO_INIT" to call as the action handler
167167
String ow_auto_init = System.getenv(OW_AUTO_INIT);

0 commit comments

Comments
 (0)