Remove errant space at end of line

This commit is contained in:
Owen Mansel-Chan
2024-09-05 11:27:20 +01:00
committed by GitHub
parent 5bafa8ace2
commit 9786934d9a

View File

@@ -667,7 +667,7 @@ class ReceiverDecl extends FieldBase, Documentable, ExprParent {
* func f4(input string) (output string, err error) { return}
* func f5(e error) (x, y int) { return }
* ```
*
*
* Note: `x, y int` is a single `ResultVariableDecl` even though it declares
* two different result variables. Use the member predicate `getTypeExpr()` to
* get `int`, `getNameExpr(0)` to get `x` and `getNameExpr(1)` to get `y`.