From f476979b65ef6bd60d5ce2f774c9a6b3b378f1dc Mon Sep 17 00:00:00 2001 From: Jose Date: Fri, 1 Dec 2023 19:03:50 +0100 Subject: [PATCH] Example READMEs minor fixes (#3830) --- examples/json/Greeter/README.md | 2 +- examples/protobuf/Deadline/README.md | 2 +- examples/protobuf/GenericHost/README.md | 2 +- examples/protobuf/Greeter/README.md | 2 +- examples/protobuf/Logger/README.md | 2 +- examples/protobuf/Metrics/README.md | 2 +- examples/protobuf/MultipleServices/README.md | 2 +- examples/protobuf/Quic/README.md | 2 +- examples/protobuf/RequestContext/README.md | 2 +- examples/protobuf/Retry/README.md | 4 ++-- examples/protobuf/Secure/README.md | 2 +- examples/protobuf/Stream/README.md | 2 +- examples/protobuf/Telemetry/README.md | 4 ++-- examples/protobuf/Thermostat/README.md | 2 +- examples/slice/Compress/README.md | 2 +- examples/slice/Deadline/README.md | 2 +- examples/slice/Download/README.md | 2 +- examples/slice/GenericHost/README.md | 2 +- examples/slice/Greeter/README.md | 2 +- examples/slice/InteropIceGrid/README.md | 2 +- examples/slice/Logger/README.md | 2 +- examples/slice/Metrics/README.md | 2 +- examples/slice/MultipleInterfaces/README.md | 2 +- examples/slice/Quic/README.md | 2 +- examples/slice/RequestContext/README.md | 2 +- examples/slice/Retry/README.md | 4 ++-- examples/slice/Secure/README.md | 2 +- examples/slice/Stream/README.md | 2 +- examples/slice/Telemetry/README.md | 4 ++-- examples/slice/Thermostat/README.md | 2 +- examples/slice/Upload/README.md | 2 +- 31 files changed, 35 insertions(+), 35 deletions(-) diff --git a/examples/json/Greeter/README.md b/examples/json/Greeter/README.md index cfbcd2bb0f..94e161d2c1 100644 --- a/examples/json/Greeter/README.md +++ b/examples/json/Greeter/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/Deadline/README.md b/examples/protobuf/Deadline/README.md index 5e5f8c99aa..b6ba839a3b 100644 --- a/examples/protobuf/Deadline/README.md +++ b/examples/protobuf/Deadline/README.md @@ -17,7 +17,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/GenericHost/README.md b/examples/protobuf/GenericHost/README.md index e43ef77c7f..f76b40e3ca 100644 --- a/examples/protobuf/GenericHost/README.md +++ b/examples/protobuf/GenericHost/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/Greeter/README.md b/examples/protobuf/Greeter/README.md index 30d2e35a9a..f2f9dd0f6d 100644 --- a/examples/protobuf/Greeter/README.md +++ b/examples/protobuf/Greeter/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/Logger/README.md b/examples/protobuf/Logger/README.md index 260e901a0f..fb5bc19934 100644 --- a/examples/protobuf/Logger/README.md +++ b/examples/protobuf/Logger/README.md @@ -21,7 +21,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/Metrics/README.md b/examples/protobuf/Metrics/README.md index 0bc28a502e..65d335fbef 100644 --- a/examples/protobuf/Metrics/README.md +++ b/examples/protobuf/Metrics/README.md @@ -26,7 +26,7 @@ To monitor the server counter metrics, in a separate window run: dotnet-counters monitor --name Server --counters IceRpc.Dispatch ``` -In a separate window run the client program to send requests to the server: +In a separate terminal run the client program to send requests to the server: ```shell cd Client diff --git a/examples/protobuf/MultipleServices/README.md b/examples/protobuf/MultipleServices/README.md index acfdc915d4..4a7d97db3c 100644 --- a/examples/protobuf/MultipleServices/README.md +++ b/examples/protobuf/MultipleServices/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/Quic/README.md b/examples/protobuf/Quic/README.md index 9f741c7cb3..6b1f95490b 100644 --- a/examples/protobuf/Quic/README.md +++ b/examples/protobuf/Quic/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/RequestContext/README.md b/examples/protobuf/RequestContext/README.md index ab4aa2d2ea..36ac07e9ae 100644 --- a/examples/protobuf/RequestContext/README.md +++ b/examples/protobuf/RequestContext/README.md @@ -17,7 +17,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/Retry/README.md b/examples/protobuf/Retry/README.md index 0c1da8c1dd..d976254883 100644 --- a/examples/protobuf/Retry/README.md +++ b/examples/protobuf/Retry/README.md @@ -21,7 +21,7 @@ cd Server dotnet run -- 0 ``` -In a separate window, start the second instance: +In a separate terminal, start the second instance: ```shell cd Server @@ -35,7 +35,7 @@ cd Server dotnet run -- 2 ``` -In a separate window, start the Client program, passing the number of server instances as an argument: +In a separate terminal, start the Client program, passing the number of server instances as an argument: ```shell cd Client diff --git a/examples/protobuf/Secure/README.md b/examples/protobuf/Secure/README.md index cae0740d99..255db481bf 100644 --- a/examples/protobuf/Secure/README.md +++ b/examples/protobuf/Secure/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/Stream/README.md b/examples/protobuf/Stream/README.md index b452e0dc0e..8eb2669c3a 100644 --- a/examples/protobuf/Stream/README.md +++ b/examples/protobuf/Stream/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/Telemetry/README.md b/examples/protobuf/Telemetry/README.md index 4f2dbc1ddf..c5adcec188 100644 --- a/examples/protobuf/Telemetry/README.md +++ b/examples/protobuf/Telemetry/README.md @@ -14,14 +14,14 @@ First start the Zipkin service as documented in the Zipkin quick start guide: - [Zipkin quick-start](https://zipkin.io/pages/quickstart.html) -In a separate window start the Greeter Server program: +In a separate terminal start the Greeter Server program: ```shell cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/protobuf/Thermostat/README.md b/examples/protobuf/Thermostat/README.md index 39f81a1e01..2db7f36881 100644 --- a/examples/protobuf/Thermostat/README.md +++ b/examples/protobuf/Thermostat/README.md @@ -62,7 +62,7 @@ cd Server dotnet run ``` -In a separate window, start the Device program: +In a separate terminal, start the Device program: ```shell cd Device diff --git a/examples/slice/Compress/README.md b/examples/slice/Compress/README.md index ef094ecc17..ac7a39b18e 100644 --- a/examples/slice/Compress/README.md +++ b/examples/slice/Compress/README.md @@ -16,7 +16,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Deadline/README.md b/examples/slice/Deadline/README.md index 5e5f8c99aa..b6ba839a3b 100644 --- a/examples/slice/Deadline/README.md +++ b/examples/slice/Deadline/README.md @@ -17,7 +17,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Download/README.md b/examples/slice/Download/README.md index 273810c5de..9ade6bafe2 100644 --- a/examples/slice/Download/README.md +++ b/examples/slice/Download/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/GenericHost/README.md b/examples/slice/GenericHost/README.md index e43ef77c7f..f76b40e3ca 100644 --- a/examples/slice/GenericHost/README.md +++ b/examples/slice/GenericHost/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Greeter/README.md b/examples/slice/Greeter/README.md index 30d2e35a9a..f2f9dd0f6d 100644 --- a/examples/slice/Greeter/README.md +++ b/examples/slice/Greeter/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/InteropIceGrid/README.md b/examples/slice/InteropIceGrid/README.md index 78515979de..91d25d0b76 100644 --- a/examples/slice/InteropIceGrid/README.md +++ b/examples/slice/InteropIceGrid/README.md @@ -18,7 +18,7 @@ applications: - [java][4] - [python][5] -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Logger/README.md b/examples/slice/Logger/README.md index 260e901a0f..fb5bc19934 100644 --- a/examples/slice/Logger/README.md +++ b/examples/slice/Logger/README.md @@ -21,7 +21,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Metrics/README.md b/examples/slice/Metrics/README.md index 0bc28a502e..65d335fbef 100644 --- a/examples/slice/Metrics/README.md +++ b/examples/slice/Metrics/README.md @@ -26,7 +26,7 @@ To monitor the server counter metrics, in a separate window run: dotnet-counters monitor --name Server --counters IceRpc.Dispatch ``` -In a separate window run the client program to send requests to the server: +In a separate terminal run the client program to send requests to the server: ```shell cd Client diff --git a/examples/slice/MultipleInterfaces/README.md b/examples/slice/MultipleInterfaces/README.md index b3eb10a162..9ab93a591f 100644 --- a/examples/slice/MultipleInterfaces/README.md +++ b/examples/slice/MultipleInterfaces/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Quic/README.md b/examples/slice/Quic/README.md index 9f741c7cb3..6b1f95490b 100644 --- a/examples/slice/Quic/README.md +++ b/examples/slice/Quic/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/RequestContext/README.md b/examples/slice/RequestContext/README.md index ab4aa2d2ea..36ac07e9ae 100644 --- a/examples/slice/RequestContext/README.md +++ b/examples/slice/RequestContext/README.md @@ -17,7 +17,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Retry/README.md b/examples/slice/Retry/README.md index 0c1da8c1dd..d976254883 100644 --- a/examples/slice/Retry/README.md +++ b/examples/slice/Retry/README.md @@ -21,7 +21,7 @@ cd Server dotnet run -- 0 ``` -In a separate window, start the second instance: +In a separate terminal, start the second instance: ```shell cd Server @@ -35,7 +35,7 @@ cd Server dotnet run -- 2 ``` -In a separate window, start the Client program, passing the number of server instances as an argument: +In a separate terminal, start the Client program, passing the number of server instances as an argument: ```shell cd Client diff --git a/examples/slice/Secure/README.md b/examples/slice/Secure/README.md index cae0740d99..255db481bf 100644 --- a/examples/slice/Secure/README.md +++ b/examples/slice/Secure/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Stream/README.md b/examples/slice/Stream/README.md index b452e0dc0e..8eb2669c3a 100644 --- a/examples/slice/Stream/README.md +++ b/examples/slice/Stream/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Telemetry/README.md b/examples/slice/Telemetry/README.md index 4f2dbc1ddf..c5adcec188 100644 --- a/examples/slice/Telemetry/README.md +++ b/examples/slice/Telemetry/README.md @@ -14,14 +14,14 @@ First start the Zipkin service as documented in the Zipkin quick start guide: - [Zipkin quick-start](https://zipkin.io/pages/quickstart.html) -In a separate window start the Greeter Server program: +In a separate terminal start the Greeter Server program: ```shell cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client diff --git a/examples/slice/Thermostat/README.md b/examples/slice/Thermostat/README.md index ac312c7054..7e1ffbae95 100644 --- a/examples/slice/Thermostat/README.md +++ b/examples/slice/Thermostat/README.md @@ -61,7 +61,7 @@ cd Server dotnet run ``` -In a separate window, start the Device program: +In a separate terminal, start the Device program: ```shell cd Device diff --git a/examples/slice/Upload/README.md b/examples/slice/Upload/README.md index 4800699ecb..a54792b34a 100644 --- a/examples/slice/Upload/README.md +++ b/examples/slice/Upload/README.md @@ -15,7 +15,7 @@ cd Server dotnet run ``` -In a separate window, start the Client program: +In a separate terminal, start the Client program: ```shell cd Client