Skip to content

Commit f79ec7d

Browse files
committed
Update part9c.md
1 parent fd2a258 commit f79ec7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/9/en/part9c.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,13 +1094,13 @@ export default toNewDiaryEntry;
10941094
10951095
> #### A sidenote from the editor
10961096
>
1097-
> <i>If you are like me and hate having a code in broken state for a long time due to incomplete typing, you could star by "faking" the function: </i>
1097+
> <i>If you are like me and hate having a code in broken state for a long time due to incomplete typing, you could start by "faking" the function: </i>
10981098
>
10991099
>
11001100
>```js
11011101
>const toNewDiaryEntry = (object: unknown): NewDiaryEntry => {
11021102
>
1103-
> console.log(object); // now object is no more unused
1103+
> console.log(object); // now object is no longer unused
11041104
> const newEntry: NewDiaryEntry = {
11051105
> weather: 'cloudy', // fake the return value
11061106
> visibility: 'great',
@@ -1112,7 +1112,7 @@ export default toNewDiaryEntry;
11121112
>};
11131113
>```
11141114
>
1115-
> <i>So before the real data and types are ready to use, I'am just returning here something that has for the sure the right type. The code stays in a operational state all the time and my blood pressure remains in normal level. </i>
1115+
> <i>So before the real data and types are ready to use, I am just returning here something that has for the sure the right type. The code stays in an operational state all the time and my blood pressure remains in normal level. </i>
11161116
11171117
### Type guards
11181118

0 commit comments

Comments
 (0)