diff --git a/docs/api/operations.md b/docs/api/operations.md index 9387f6991..b6f0dc542 100644 --- a/docs/api/operations.md +++ b/docs/api/operations.md @@ -43,6 +43,9 @@ Operations can also call other operations using ``yield from`` syntax: yield from files.file._inner( path="/some/file", ..., + + # Only arguments for the operation itself are allowed, global arguments + # such as e.g. _sudo are not accepted. ) ```