From be0d838e118c609d0117bd8e8f1c7a84b56a2470 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 15 May 2016 00:04:28 -0400 Subject: [PATCH] Updated documentation --- misc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);