Skip to content

Commit ee11864

Browse files
committed
Fix typos
1 parent bb7b1fc commit ee11864

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.vale/Vocab/docs/accept.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
(?i)aws
22
(?i)boolean
3+
(?i)bool
34
(?i)browserify
45
(?i)config
56
(?i)css
67
(?i)goja
8+
(?i)grpc
79
(?i)grafana
810
(?i)hmac
911
(?i)html

src/data/markdown/docs/02 javascript api/09 k6-net-grpc/10-Client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Client
44

55
`Client` is a gRPC client that can interact with a gRPC server.
66

7-
> ⚠️ **Note**: Only unary RPCs are currently supported, ie. there is no support for client, server or bidirectional streaming.
7+
> ⚠️ **Note**: Only unary RPCs are currently supported, i.e. there is no support for client, server or bidirectional streaming.
88
99
| Method | Description |
1010
|--------|-------------|

src/data/markdown/docs/02 javascript api/09 k6-net-grpc/20 Client/10-Client-load-importpaths-protoFiles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Client.load(importPaths, ...protoFiles)"
33
---
44

5-
Loads and parses the protocol buffer descriptors so they are available to the client to marshal/unmarshal the correct request and repsonse data structures for the RPC schema.
5+
Loads and parses the protocol buffer descriptors so they are available to the client to marshal/unmarshal the correct request and response data structures for the RPC schema.
66

77
Must be called within the [`init` phase](/using-k6/test-life-cycle).
88

src/data/markdown/docs/02 javascript api/09 k6-net-grpc/20 Client/20-Client-connect-connect-address-params.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ See [Client.close()]() to close the connection.
88

99
| Parameter | Type | Description |
1010
|-----------|------|-------------|
11-
| address | string | The address of the gRPC server. Should be in the form: `host:port` with no protocol prefix eg. `grpc.k6.io:443`. The host must be a literal IP address, or a host name that can be resolved to IP addresses. The port must be a literal port number or a service name eg. `:443` or `:https`. If the host is a literal IPv6 address it must be enclosed in square brackets, as in `[2001:db8::1]:80` or `[fe80::1%zone]:80`. |
11+
| address | string | The address of the gRPC server. Should be in the form: `host:port` with no protocol prefix e.g. `grpc.k6.io:443`. The host must be a literal IP address, or a host name that can be resolved to IP addresses. The port must be a literal port number or a service name e.g. `:443` or `:https`. If the host is a literal IPv6 address it must be enclosed in square brackets, as in `[2001:db8::1]:80` or `[fe80::1%zone]:80`. |
1212
| params (optional) | object | [ConnectParams](#connectparams) object containing additional connect parameters. |
1313

1414

1515
## ConnectParams
1616

1717
| Name | Type | Description |
1818
|------|------|-------------|
19-
| `ConnectParams.plaintext` | bool | If `true` will connect to the gRPC server using plaintext ie. insecure. Defaults to `false` ie. secure via TLS. |
19+
| `ConnectParams.plaintext` | bool | If `true` will connect to the gRPC server using plaintext i.e. insecure. Defaults to `false` i.e. secure via TLS. |
2020
| `ConnectParams.timeout` | number | Connection timeout to use. Default timeout is `"60s"` (60 seconds). |
2121

2222
### Examples

src/data/markdown/docs/02 javascript api/09 k6-net-grpc/20 Client/30-Client-invokerpc-url-request-params.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ error will be thrown.
1111

1212
| Parameter | Type | Description |
1313
|-----------|------|-------------|
14-
| url | string | The gRPC method url to invoke, in the form `/package.Service/Method`, eg. `/google.cloud.language.v1.LanguageService/AnalyzeSentiment`. The leading slash `/` is optional. |
14+
| url | string | The gRPC method url to invoke, in the form `/package.Service/Method`, e.g. `/google.cloud.language.v1.LanguageService/AnalyzeSentiment`. The leading slash `/` is optional. |
1515
| request | object | The canonical request object, as-per the [Protobuf JSON Mapping](https://developers.google.com/protocol-buffers/docs/proto3#json). |
1616
| params (optional) | object | [Params](/javascript-api/k6-net-grpc/params) object containing additional request parameters.
1717

src/data/markdown/docs/03 cloud/07 Cloud FAQ/11 Test status codes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ A test which was aborted by the user. Tests aborted by user count against your t
6262

6363
## Aborted (by system)
6464

65-
A test that was aborted by the system. These tests typically abort due to a fatal error occurring. If the test fails before launch, there may be an underlying issue with the Load Zone, unrelated to k6. If the test aborts during execution, it may be due to overutilization of the Load Generators. In this case, we suggest you look at the CPU and Memory utilization and add or increase sleep times. You may also want to set the option `discardRepsonseBodies` to `true`, to lower memory pressure.
65+
A test that was aborted by the system. These tests typically abort due to a fatal error occurring. If the test fails before launch, there may be an underlying issue with the Load Zone, unrelated to k6. If the test aborts during execution, it may be due to overutilization of the Load Generators. In this case, we suggest you look at the CPU and Memory utilization and add or increase sleep times. You may also want to set the option `discardResponseBodies` to `true`, to lower memory pressure.
6666

6767
## Aborted (script error)
6868

0 commit comments

Comments
 (0)