Equal signs replaced with "#" in code blocks in the Gray Book

Hey,

Was going through the Introduction for .NET programmers section in the Gray Book and noticed = seem to be replaced with # in code blocks. For instance, on the Concepts page :

First we need to agree that the above is only a shortcut to writing:

var foo # 1;
foo # foo + 1;

In the Keywords section :

for (int i # 0; i < 10; i++)
{
  if (i % 2 ## 0)
    break;
  Console.Beep();
}

Looks like those # should be =.

thanks for the pointer. fixed.