Skip to content

Commit ae54040

Browse files
authored
docs(readme): fix small typos (#140)
1 parent df662a1 commit ae54040

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This is the [Scaleway Functions](https://www.scaleway.com/en/serverless-function
2424
```shell
2525
serverless create --path my-func --template-url https://github.com/scaleway/serverless-scaleway-functions/tree/master/examples/${TEMPLATE}
2626
```
27-
3. Install deps.
27+
3. Install dependencies.
2828
```shell
2929
cd my-func
3030
npm i
@@ -76,7 +76,7 @@ The easiest way to create a new project is to use one of our templates. The list
7676
# mkdir ~/my-srvless-projects
7777
# cd ~/my-srvless-projects
7878
```
79-
2. Create a new project using `python3.
79+
2. Create a new project using `python3`.
8080

8181
```bash
8282
serverless create --template-url https://github.com/scaleway/serverless-scaleway-functions/tree/master/examples/python3 --path myService
@@ -164,7 +164,7 @@ The configuration includes the following parameters:
164164
### Security and secret management
165165

166166
>**Important**:
167-
We recommend you to not commit in VCS, and to not share your Project ID or access key to ensure the security of your configuration file, which may contain sensitive data.
167+
We recommend you to not commit in a Version Control System (VCS), and to not share your Project ID or access key to ensure the security of your configuration file, which may contain sensitive data.
168168

169169
To keep your information safe and to share or commit your `serverless.yml` file you should remove your credentials from the file. Once you have done so, you can either:
170170
- use global environment variables, or
@@ -225,7 +225,7 @@ function handle (event, context, cb) {
225225
};
226226
```
227227

228-
The use of ES modules is encouraged, since they are more efficient and make setup and debugging much easier.
228+
The use of ES modules is encouraged since they are more efficient and make setup and debugging much easier.
229229

230230
Note that using `"type": "module"` or `"type": "commonjs"` in your `package.json` file will enable or disable some features in Node runtime, such as:
231231
- `commonjs` is used as the default value

0 commit comments

Comments
 (0)