Document destructuring syntax in anonymous function argument (#39024)
When destructuring a single tuple in an anonymous function argument,
you have to include an extra comma to force a 1-tuple. Otherwise ((x,y))
collapses to (x,y). This is not the case for named functions.
Co-authored-by: Graham Smith <grahamas@gmail.com>