Skip to content

Commit 32d7a4d

Browse files
authored
Fix Typo
1 parent b0d2c89 commit 32d7a4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/microservices/grpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ bidiHello(messages: Observable<any>, metadata: Metadata, call: ServerDuplexStrea
427427
428428
> info **Hint** The `Metadata` and `ServerUnaryCall` classes/interfaces are imported from the `grpc` package.
429429
430-
According to the service definition (in the `.proto` file), the `BidiHello` method should stream requests to the service. To send multiple asynchronous messages to the stream from a client, we leverage an RxJS `ReplySubject` class.
430+
According to the service definition (in the `.proto` file), the `BidiHello` method should stream requests to the service. To send multiple asynchronous messages to the stream from a client, we leverage an RxJS `ReplaySubject` class.
431431

432432
```typescript
433433
const helloService = this.client.getService<HelloService>('HelloService');

0 commit comments

Comments
 (0)