File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ This one will run since `year_of_birth` is optional and will default to `None`.
292
292
293
293
<opt text =" <code>name_initials(last_name = 'Grant', year_of_birth = 1977, first_name = 'Cameron')</code> " >
294
294
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 ` .
296
296
297
297
</opt >
298
298
@@ -304,7 +304,7 @@ This will result in an error since the argument values are not in the defined or
304
304
305
305
<opt text =" <code>name_initials('Cameron', 'Grant', 1977)</code> " >
306
306
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 ` .
308
308
309
309
</opt >
310
310
You can’t perform that action at this time.
0 commit comments