Skip to content

Commit 08c56c9

Browse files
enclose answers with back ticks
1 parent 5320b40 commit 08c56c9

File tree

32 files changed

+232
-232
lines changed

32 files changed

+232
-232
lines changed

docker/docker-fundamentals/storage/docker-bind-mounts.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ docker container run \
5858
??? ???:??? nginx
5959
```
6060

61-
- -v
62-
- ~/local/data
63-
- /data
64-
- -b
65-
- --bind
61+
- `-v`
62+
- `~/local/data`
63+
- `/data`
64+
- `-b`
65+
- `--bind`

git/essentials/branching/pulling-a-remote-branch.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ git pull -a
8686

8787
???
8888

89-
- --append
90-
- --amend
91-
- --all
92-
- --autostash
89+
- `--append`
90+
- `--amend`
91+
- `--all`
92+
- `--autostash`

git/workflow/staging-i/interactively-stage-patches.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Complete the following code snippet to partially stage a file:
4949
??? ??? ???
5050
```
5151

52-
- git
53-
- add
54-
- -p
55-
- -patch
56-
- stage
52+
- `git`
53+
- `add`
54+
- `-p`
55+
- `-patch`
56+
- `stage`

go/go-introduction/go-operators/go-assignment-operators.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ y ??? x // y = 7
8686
x ??? y // x = 25
8787
```
8888

89-
- *=
90-
- %=
91-
- +=
92-
- =
89+
- `*=`
90+
- `%=`
91+
- `+=`
92+
- `=`
9393

9494

9595
---
@@ -110,7 +110,7 @@ z ??? y // z = 5
110110
x ??? z // x = 2
111111
```
112112

113-
- -=
114-
- +=
115-
- /=
116-
- %=
113+
- `-=`
114+
- `+=`
115+
- `/=`
116+
- `%=`

go/go-introduction/variables-and-initialization/formatting.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ Format the `file-name.go` package using the `gofmt` command.
6969
??? ??? ???
7070
```
7171

72-
- gofmt
73-
- -w
74-
- file-name.go
72+
- `gofmt`
73+
- `-w`
74+
- `file-name.go`
7575

7676

7777
---
@@ -84,7 +84,7 @@ Format the `file-name.go` package found in the `/path/to/directory` using the `g
8484
??? ??? ???
8585
```
8686

87-
- go
88-
- fmt
89-
- /path/to/directory
87+
- `go`
88+
- `fmt`
89+
- `/path/to/directory`
9090

java/data-management/byte-operations-i/bitwise-operations-in-java.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ What would be the output of `System.out.println(7 & 5);`, 7 = 0111, 5 = 0101?
5252

5353
???
5454

55-
- 5
56-
- 0
57-
- -5
55+
- `5`
56+
- `0`
57+
- `-5`
5858

5959

6060
---

java/data-management/byte-operations-i/detect-or-prevent-integer-overflow.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ If the `byte` type occupies 1 byte of data and has a range from *-128 to 127* (-
5151

5252
???
5353

54-
- -2^15 to 2^15–1
55-
- -2^13 to 2^13–1
56-
- -2^18 to 2^18
57-
- -2^8 to 2^8–1
54+
- `-2^15 to 2^15–1`
55+
- `-2^13 to 2^13–1`
56+
- `-2^18 to 2^18`
57+
- `-2^8 to 2^8–1`
5858

5959

6060
---

javascript/ecmascript-2015/function-improvements/default-function-parameters.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ function cube(??? ??? ???) {
5252
cube() // 0
5353
```
5454
55-
- number
56-
- =
57-
- 0
58-
- 1
59-
- default
60-
- n
61-
- int
62-
- const
63-
- let
64-
- -1
55+
- `number`
56+
- `=`
57+
- `0`
58+
- `1`
59+
- `default`
60+
- `n`
61+
- `int`
62+
- `const`
63+
- `let`
64+
- `-1`
6565

6666

6767
---
@@ -79,9 +79,9 @@ console.log(square());
7979
// ???
8080
```
8181

82-
- 1
83-
- 2
84-
- error
85-
- undefined
86-
- null
82+
- `1`
83+
- `2`
84+
- `error`
85+
- `undefined`
86+
- `null`
8787

javascript/ecmascript-2015/number-extensions/math-extensions.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,16 @@ console.log(Math.trunc(4.522));
7070
// ???
7171
```
7272

73-
- 3
74-
- -1
75-
- 4
76-
- 1
77-
- 9
78-
- 7
79-
- 8
80-
- 2
81-
- -2
82-
- -22
73+
- `3`
74+
- `-1`
75+
- `4`
76+
- `1`
77+
- `9`
78+
- `7`
79+
- `8`
80+
- `2`
81+
- `-2`
82+
- `-22`
8383

8484

8585
---

javascript/javascript-core/js-history/infix-operators-are-left-associative.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ console.log(x);
6262
// ???
6363
```
6464

65-
- 68
66-
- -28
67-
- 192
68-
- 0
69-
- undefined
70-
- -68
71-
- -192
65+
- `68`
66+
- `-28`
67+
- `192`
68+
- `0`
69+
- `undefined`
70+
- `-68`
71+
- `-192`
7272

7373

7474
---
@@ -77,7 +77,7 @@ console.log(x);
7777

7878
The processing of operations starts with the ??? operator if no parentheses are used.
7979

80-
- left-most
81-
- right-most
82-
- middle
80+
- `left-most`
81+
- `right-most`
82+
- `middle`
8383

javascript/javascript-core/recipes-i/using-the-double-tilde.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,17 @@ console.log(~~{});
5757
// ???
5858
```
5959

60-
- 15
61-
- 7
62-
- -1
63-
- 0
64-
- -15
65-
- 1.5
66-
- 7.1
67-
- 8
68-
- -2
69-
- 1
70-
- NaN
60+
- `15`
61+
- `7`
62+
- `-1`
63+
- `0`
64+
- `-15`
65+
- `1.5`
66+
- `7.1`
67+
- `8`
68+
- `-2`
69+
- `1`
70+
- `NaN`
7171

7272

7373
---
@@ -85,9 +85,9 @@ console.log( ~~"Sunny" );
8585
// ???
8686
```
8787

88-
- 12
89-
- 56
90-
- 0
91-
- NaN
92-
- ”56”
88+
- `12`
89+
- `56`
90+
- `0`
91+
- `NaN`
92+
- `"56"`
9393

javascript/node/intro-node/the-repl-terminal.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ node
6666

6767
???
6868

69-
- 20
70-
- command not found: 3
71-
- 26
72-
- -10
69+
- `20`
70+
- `command not found: 3`
71+
- `26`
72+
- `-10`
7373

7474

7575
---

javascript/node/node-tools/automatic-compilation-for-node-with-nodemon.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ Which flag must be used to enable debugging?
6060

6161
???
6262

63-
- --debug
64-
- debug
65-
- -debug
66-
- debugging
67-
- --debugger
63+
- `--debug`
64+
- `debug`
65+
- `-debug`
66+
- `debugging`
67+
- `--debugger`
6868

6969

7070
---
@@ -75,8 +75,8 @@ Which flag must be used to enable debugging?
7575

7676
???
7777

78-
- --debug
79-
- debug
80-
- -debug
81-
- debugging
82-
- --debugger
78+
- `--debug`
79+
- `debug`
80+
- `-debug`
81+
- `debugging`
82+
- `--debugger`

javascript/npm/intro-npm/package-json.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ This file is what makes some code a *package*.
8484

8585
Will create the default *package.json* file.
8686

87-
- npm
88-
- init
89-
- -y
90-
- install
91-
- -i
87+
- `npm`
88+
- `init`
89+
- `-y`
90+
- `install`
91+
- `-i`
9292

9393

9494
---

javascript/npm/intro-npm/setting-up-npm.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ How would you update npm to the latest version? Place the flag at the end of the
6464
npm ??? ??? ???
6565
```
6666

67-
- install
68-
- npm
69-
- -g
70-
- latest
71-
- -l
72-
- add
73-
- remove
74-
- --latest
67+
- `install`
68+
- `npm`
69+
- `-g`
70+
- `latest`
71+
- `-l`
72+
- `add`
73+
- `remove`
74+
- `--latest`
7575

7676

7777
---
@@ -84,9 +84,9 @@ Install the *react* package locally:
8484
??? ??? ???
8585
```
8686

87-
- npm
88-
- install
89-
- react
90-
- -l
91-
- -g
92-
- node
87+
- `npm`
88+
- `install`
89+
- `react`
90+
- `-l`
91+
- `-g`
92+
- `node`

javascript/npm/npm-features-i/npm-scripting.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -95,19 +95,19 @@ One called `test` which will run `jest` and another called `test:ci` which will
9595
}
9696
```
9797

98-
- scripts
99-
- test
100-
- jest
101-
- test:ci
102-
- npm run test
103-
- -- runInBand
104-
- script
105-
- node-scripts
106-
- testing
107-
- test --
108-
- runInBand
109-
- run test
110-
- npm
98+
- `scripts`
99+
- `test`
100+
- `jest`
101+
- `test:ci`
102+
- `npm run test`
103+
- `-- runInBand`
104+
- `script`
105+
- `node-scripts`
106+
- `testing`
107+
- `test --`
108+
- `runInBand`
109+
- `run test`
110+
- `npm`
111111

112112

113113
---

0 commit comments

Comments
 (0)