Skip to content

Commit fbd6fe5

Browse files
Trottcodebytere
authored andcommitted
doc: update code language flag for internal doc
Use `bash` instead of `shell` for code language flag in doc/guides/maintaining-ngtcp2-nghttp3.md to conform with our other docs and upcoming lint requirements. PR-URL: #33852 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]>
1 parent 6651bde commit fbd6fe5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tools/icu/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ internationalization functionality.
2525
* Configure Node.js with the specific [ICU version](http://icu-project.org/download)
2626
you want to upgrade to, for example:
2727

28-
```shell
28+
```bash
2929
./configure \
3030
--with-intl=small-icu \
3131
--with-icu-source=http://download.icu-project.org/files/icu4c/58.1/icu4c-58_1-src.tgz
@@ -42,7 +42,7 @@ make
4242

4343
* Verify the Node.js build works:
4444

45-
```shell
45+
```bash
4646
make test-ci
4747
```
4848

@@ -58,13 +58,13 @@ new Intl.DateTimeFormat('es', {month: 'long'}).format(new Date(9E8));
5858

5959
* Now, copy `deps/icu` over to `deps/icu-small`
6060

61-
```shell
61+
```bash
6262
python tools/icu/shrink-icu-src.py
6363
```
6464

6565
* Now, do a clean rebuild of Node.js to test:
6666

67-
```shell
67+
```bash
6868
make -k distclean
6969
./configure
7070
make
@@ -86,7 +86,7 @@ so make this a separate commit from the smaller changes.
8686

8787
* Now, rebuild the Node.js license.
8888

89-
```shell
89+
```bash
9090
# clean up - remove deps/icu
9191
make clean
9292
tools/license-builder.sh
@@ -96,7 +96,7 @@ tools/license-builder.sh
9696
It should match the ICU URL used in the first step. When this is done, the
9797
following should build with full ICU.
9898

99-
```shell
99+
```bash
100100
# clean up
101101
rm -rf out deps/icu deps/icu4c*
102102
./configure --with-intl=full-icu --download=all

0 commit comments

Comments
 (0)