diff --git a/chisel-book.tex b/chisel-book.tex index 684d7a8..375c82b 100644 --- a/chisel-book.tex +++ b/chisel-book.tex @@ -1090,8 +1090,8 @@ \section{Registers} \noindent To distinguish between signals representing combinational logic and registers, a common practice is to postfix register names with \code{Reg}. Another common practice, coming from Java and Scala, is to use -\myref{https://en.wikipedia.org/wiki/Camel_case}{camelCase} for -identifier consisting of several words. The convention is to start +\myref{https://en.wikipedia.org/wiki/Camel_case}{CamelCase} for +identifiers consisting of several words. The convention is to start functions and variables with a lower case letter and classes (types), e.g., a \code{Module} name, with an upper case letter.