diff --git a/misc.h b/misc.h index dfb6e3ba..e540da0d 100644 --- a/misc.h +++ b/misc.h @@ -2083,7 +2083,7 @@ private: //! \details An example of writing two word32 values from a block of memory is shown below. After the code //! executes, the byte buffer will be {0,1,2,3,4,5,6,7}. //!
-//!    word32 w1=0x03020100, w20x07060504;
+//!    word32 w1=0x03020100, w2=0x07060504;
 //!    byte buffer[8];
 //!    PutBlock block(NULL, buffer);
 //!    block(w1)(w2);