This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/openwhisk-runtime-ballerina.git
The following commit(s) were added to refs/heads/master by this push:
new e4dd62c chore: fix spelling and grammar (#24)
e4dd62c is described below
commit e4dd62c0f54011b4a3f39f2b6d8813458337f1cf
Author: John Bampton <[email protected]>
AuthorDate: Wed Mar 10 02:12:31 2021 +1000
chore: fix spelling and grammar (#24)
---
CONTRIBUTING.md | 4 ++--
README.md | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index ab1fd94..3087b78 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -20,7 +20,7 @@
# Contributing to Apache OpenWhisk
-Anyone can contribute to the OpenWhisk project and we welcome your
contributions.
+Anyone can contribute to the OpenWhisk project, and we welcome your
contributions.
There are multiple ways to contribute: report bugs, improve the docs, and
contribute code, but you must follow these prerequisites and guidelines:
@@ -49,7 +49,7 @@ Please raise any bug reports or enhancement requests on the
respective project r
list to see if your issue has already been raised.
A good bug report is one that make it easy for us to understand what you were
trying to do and what went wrong.
-Provide as much context as possible so we can try to recreate the issue.
+Provide as much context as possible, so we can try to recreate the issue.
A good enhancement request comes with an explanation of what you are trying to
do and how that enhancement would help you.
diff --git a/README.md b/README.md
index cefce85..969a49e 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ public function main(json jsonInput) returns json {
}
```
-The Ballerina file must include a function called `main`. The abscence of
`main` causes the Ballerina compiler to omit generation of the executable. You
may have more than one entry point in your source file however (e.g., a `main`
and a `run`) and use the standard OpenWhisk mechanism to specify other
functions to run on entry (e.g., `--main <other function name>` when using the
`wsk action create` CLI command). The function must accept a JSON object and
return a JSON object to be compli [...]
+The Ballerina file must include a function called `main`. The absence of
`main` causes the Ballerina compiler to omit generation of the executable. You
may have more than one entry point in your source file however (e.g., a `main`
and a `run`) and use the standard OpenWhisk mechanism to specify other
functions to run on entry (e.g., `--main <other function name>` when using the
`wsk action create` CLI command). The function must accept a JSON object and
return a JSON object to be complia [...]
### Compiling your function