Skip to content

Commit 45a9109

Browse files
authored
fixed year in explanations
1 parent 285837b commit 45a9109

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chapters/en/module6.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ This one will run since `year_of_birth` is optional and will default to `None`.
292292

293293
<opt text="<code>name_initials(last_name = 'Grant', year_of_birth = 1977, first_name = 'Cameron')</code>">
294294

295-
Since we are defining our arguments with their names and values, this one will result in an output of `CG1987`.
295+
Since we are defining our arguments with their names and values, this one will result in an output of `CG1977`.
296296

297297
</opt>
298298

@@ -304,7 +304,7 @@ This will result in an error since the argument values are not in the defined or
304304

305305
<opt text="<code>name_initials('Cameron', 'Grant', 1977)</code>">
306306

307-
This function calls the arguments in the same order they were defined in. The output is `CG1987`.
307+
This function calls the arguments in the same order they were defined in. The output is `CG1977`.
308308

309309
</opt>
310310

0 commit comments

Comments
 (0)