C# in Depth

Missing closing bracket (Chapter 1)

On page 9, I've missed a closing bracket in the second example. The code should be:

throw new KeyNotFoundException(
    string.Format("No calendar system for ID {0} exists", id));

All errata