Section 5.3
Constants

In 5.3, modify the second paragraph of p. 52 as follows --

A static constant declared with the const keyword can shall only be set to an expression of literals, parameters, local parameters, genvars, enumerated names, a constant function of these, or other constants. The parameters, local parameters or constant functions can have hierarchical names. This is , because the static constants declared with the const keyword are calculated after elaboration.  An automatic constant declared with the const keyword can be set to any expression that would be legal without the const keyword.