diff --git a/notebooks/introduction/07_Functions.ipynb b/notebooks/introduction/07_Functions.ipynb index f9d9668..6a644ca 100644 --- a/notebooks/introduction/07_Functions.ipynb +++ b/notebooks/introduction/07_Functions.ipynb @@ -196,7 +196,7 @@ "id": "Ec9_JVHKkzzU" }, "source": [ - "Positional arguments must be in the same order as the arguments specified in the function definition, while keyword arguments are assigned to a specifc argument. In the `power` function above, you would not be able to give `y` as a positional argument and `x` as a keyword argument.\n", + "Positional arguments must be in the same order as the arguments specified in the function definition, while keyword arguments are assigned to a specific argument. In the `power` function above, you would not be able to give `y` as a positional argument and `x` as a keyword argument.\n", "\n", "NOTE: In Python, positional arguments must always precede keyword arguments when defining and calling functions." ]