Extra paren in example

Saturday, March 14 2009

On Page 69 of the 2008 book, there is an extra paren in the second grey code blok on the page.  The text says:

NextWeek.Text = DateChooser.Value.AddDays(7)).ToString()

and it should say:

NextWeek.Text = DateChooser.Value.AddDays(7).ToString()

Good catch by Kurt - thanks.

S