To me, “keyword arguments” means actual language keywords being used as arguments, like “minute” or “hour” in T-SQL’s DATEDIFF, for example: `SELECT DATEDIFF( hour, NOW(), someDateCol )`.
…but I think the author meant “named arguments”, like we have in C#, Swift, and Objective-C.
I think the author meant "keyword arguments", like they're called in Python, and which they mentioned in the first sentence.
https://docs.python.org/3/glossary.html?hl=en-GB#term-keywor...
Python calls them keyword arguments.