Skip to content

Commit bcc1c6b

Browse files
committed
More description changes
1 parent f2be224 commit bcc1c6b

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

docs/sources/next/javascript-api/k6-net-grpc/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'k6/net/grpc'
3-
excerpt: 'k6 gRPC API'
3+
description: 'k6 gRPC API'
44
weight: 11
55
---
66

@@ -19,9 +19,9 @@ The `k6/net/grpc` module provides a [gRPC](https://grpc.io/) client for Remote P
1919
| [Response](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-net-grpc/response) | Returned by RPC requests. |
2020
| [Constants](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-net-grpc/constants) | Define constants to distinguish between [gRPC Response](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-net-grpc/response) statuses. |
2121
| [Stream](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-net-grpc/stream) | Creates a new GRPC stream. |
22-
| [Stream.on(event, handler)](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-net-grpc/stream/stream-on) | Adds a new listener to one of the possible stream events. |
22+
| [Stream.on(event, handler)](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-net-grpc/stream/stream-on) | Adds a new listener to one of the possible stream events. |
2323
| [Stream.write(message)](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-net-grpc/stream/stream-write) | Writes a message to the stream. |
24-
| [Stream.end()](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-net-grpc/stream/stream-end) | Signals to the server that the client has finished sending. |
24+
| [Stream.end()](https://grafana.com/docs/k6/<K6_VERSION>/javascript-api/k6-net-grpc/stream/stream-end) | Signals to the server that the client has finished sending. |
2525

2626
## gRPC metrics
2727

docs/sources/next/javascript-api/k6-net-grpc/client/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Client
3-
excerpt: 'Client is a gRPC client that can interact with a gRPC server.'
3+
description: 'Client is a gRPC client that can interact with a gRPC server.'
44
weight: 10
55
---
66

docs/sources/next/javascript-api/k6-net-grpc/client/client-close.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Client.close()'
3-
excerpt: 'Close the connection to the gRPC service. Tear down all underlying connections.'
3+
description: 'Close the connection to the gRPC service. Tear down all underlying connections.'
44
weight: 40
55
---
66

docs/sources/next/javascript-api/k6-net-grpc/client/client-connect-connect-address-params.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Client.connect(address [,params])'
3-
excerpt: 'Opens a connection to a gRPC server; will block until a connection is made or a connection error is thrown.'
3+
description: 'Opens a connection to a gRPC server; will block until a connection is made or a connection error is thrown.'
44
weight: 20
55
slug: 'client-connect'
66
---

docs/sources/next/javascript-api/k6-net-grpc/client/client-invoke.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Client.invoke(url, request [,params])'
3-
excerpt: 'Invokes an unary RPC request to the given method.'
3+
description: 'Invokes an unary RPC request to the given method.'
44
weight: 30
55
---
66

docs/sources/next/javascript-api/k6-net-grpc/client/client-load-protoset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Client.loadProtoset(protosetPath)'
33
slug: 'client-loadprotoset'
4-
excerpt: 'Loads and parses the protoset file (serialized FileDescriptor set) so they are available to the client to marshal/unmarshal the correct request and response data structures for the RPC schema.'
4+
description: 'Loads and parses the protoset file (serialized FileDescriptor set) so they are available to the client to marshal/unmarshal the correct request and response data structures for the RPC schema.'
55
weight: 11
66
---
77

docs/sources/next/javascript-api/k6-net-grpc/client/client-load.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Client.load(importPaths, ...protoFiles)'
3-
excerpt: '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.'
3+
description: '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.'
44
weight: 10
55
---
66

docs/sources/next/javascript-api/k6-net-grpc/constants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Constants'
3-
excerpt: 'Define constants to distinguish between gRPC Response'
3+
description: 'Define constants to distinguish between gRPC Response'
44
weight: 40
55
---
66

docs/sources/next/javascript-api/k6-net-grpc/params.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Params'
33
head_title: 'gRPC.params'
4-
excerpt: 'Params is an object used by the gRPC methods that generate RPC requests.'
4+
description: 'Params is an object used by the gRPC methods that generate RPC requests.'
55
weight: 20
66
---
77

docs/sources/next/javascript-api/k6-net-grpc/response.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Response'
33
head_title: 'gRPC.Response'
4-
excerpt: 'The response object of a gRPC request.'
4+
description: 'The response object of a gRPC request.'
55
weight: 30
66
---
77

0 commit comments

Comments
 (0)