Skip to content

Commit e874c71

Browse files
docs: use bash language tag for shell code fences
The documentation style guide requires shell code fences to be tagged `bash` rather than `sh`. Update the three remaining `sh`-tagged fences under docs/ for consistency and correct syntax highlighting. Signed-off-by: cpakkamisaac <cpakkamisaac@nvidia.com>
1 parent e1acf92 commit e874c71

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/kubernetes/cloud-providers/ecs/ecs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ You can create a service or directly run the task from the task definition
119119

120120
## 6. Testing
121121
Find the public IP of the dynamo frontend task from the task page. Run following commands to query the endpoint.
122-
```sh
122+
```bash
123123
export DYNAMO_IP_ADDRESS=TASK_PUBLIC_IP_ADDRESS
124124
curl http://$DYNAMO_IP_ADDRESS:8000/v1/models
125125
curl http://$DYNAMO_IP_ADDRESS:8000/v1/chat/completions -H "Content-Type: application/json" -d '{

docs/kubernetes/model-caching-with-fluid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can install Fluid on any Kubernetes cluster using Helm.
2323
- `Helm` >= 3.5
2424

2525
**Quick Install:**
26-
```sh
26+
```bash
2727
kubectl create ns fluid-system
2828
helm repo add fluid https://fluid-cloudnative.github.io/charts
2929
helm repo update

docs/observability/logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ You can provide a custom request ID using the `x-request-id` header. This ID wil
251251

252252
### Example Request with Custom Request ID
253253

254-
```sh
254+
```bash
255255
curl -X POST http://localhost:8000/v1/chat/completions \
256256
-H 'Content-Type: application/json' \
257257
-H 'x-request-id: 8372eac7-5f43-4d76-beca-0a94cfb311d0' \

0 commit comments

Comments
 (0)