Skip to content

Commit fca2ab2

Browse files
committed
Fix typo: duplicated the
1 parent feb73f5 commit fca2ab2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_parts/part4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ I'm going to use [strtok()](http://www.cplusplus.com/reference/cstring/strtok/)
219219
}
220220
```
221221

222-
Calling `strtok` successively on the the input buffer breaks it into substrings by inserting a null character whenever it reaches a delimiter (space, in our case). It returns a pointer to the start of the substring.
222+
Calling `strtok` successively on the input buffer breaks it into substrings by inserting a null character whenever it reaches a delimiter (space, in our case). It returns a pointer to the start of the substring.
223223

224224
We can call [strlen()](http://www.cplusplus.com/reference/cstring/strlen/) on each text value to see if it's too long.
225225

0 commit comments

Comments
 (0)