File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -603,7 +603,7 @@ Glossary
603603 lambda
604604 An anonymous inline function consisting of a single :term: `expression `
605605 which is evaluated when the function is called. The syntax to create
606- a lambda function is ``lambda [arguments ]: expression ``
606+ a lambda function is ``lambda [parameters ]: expression ``
607607
608608 LBYL
609609 Look before you leap. This coding style explicitly tests for
Original file line number Diff line number Diff line change @@ -1613,12 +1613,12 @@ Lambdas
16131613 lambda_expr_nocond: "lambda" [`parameter_list `]: `expression_nocond `
16141614
16151615Lambda expressions (sometimes called lambda forms) are used to create anonymous
1616- functions. The expression ``lambda arguments : expression `` yields a function
1616+ functions. The expression ``lambda parameters : expression `` yields a function
16171617object. The unnamed object behaves like a function object defined with:
16181618
16191619.. code-block :: none
16201620
1621- def <lambda>(arguments ):
1621+ def <lambda>(parameters ):
16221622 return expression
16231623
16241624 See section :ref: `function ` for the syntax of parameter lists. Note that
You can’t perform that action at this time.
0 commit comments