We don't need outermost parentheses\. \(We can write lambdax.(lambday.(x+y)) instead of (lambdax.(lambday.(x+y)))\.\) Application is, by default, left associative\. \(fxy means "the function f with inputs x and y," i\.e\. (fx)y, not f(xy)\.\) The scope of any lambda is as large is possible\. \(lambdax.lambday.x+y means lambdax.(lambday.(x+y)), not (lambdax.lambday.x)+y or lambdax.(lambday.x)+y or anything like that\.\) We can abbreviate sequences of lambdas\. \(As mentioned before, we can write lambdaxy.x+y for lambdax.lambday.x+y\.\)
I think this sentence would be easier to read without the parenthesis around the second sentence.