Skip to content

Commit 43ae57d

Browse files
authored
Fix grammar in part4b.md
1 parent 64e70d8 commit 43ae57d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/4/en/part4b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Checking the value of the header uses a bit strange looking syntax:
153153
.expect('Content-Type', /application\/json/)
154154
```
155155

156-
The desired value is now defined as [regular expression](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) or in short regex. The regex starts and ends with a slash /, because the desired string <i>application/json</i> also contains the same slash, it is preceded by a \ so that it is not interpreted as a regex termination character.
156+
The desired value is now defined as [regular expression](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) or in short regex. The regex starts and ends with a slash /, and because the desired string <i>application/json</i> also contains the same slash, it is preceded by a \ so that it is not interpreted as a regex termination character.
157157

158158
In principle, the test could also have been defined as a string
159159

0 commit comments

Comments
 (0)