Documentation & code comment minor updates
diff --git a/README.md b/README.md
index fd22141..b4a40e7 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,9 @@
 
 **Secure Coding Style** – Uses a construct called UsefulBuf as a discipline for very safe coding the handling of binary data.
 
-**Small Code Size** – When optimized for size using the compiler -Os option, x86 code is less than 5KB (~1.7B encode, ~2.8KB decode, ~0.4KB common). 
+**Small Code Size** – When optimized for size using the compiler -Os
+  option, x86 code is less than 5KB (~1.1B encode, ~2.8KB decode,
+  ~0.4KB common).
 
 **Clear documented public interface** – The public interface is separated from the implementation. It can be put to use without reading the source. 
 
@@ -72,11 +74,3 @@
 * The "_3" functions are replaced with "_2" functions (the macros that referenced _3, now reference _2 and work the same)
 * There is a new AddTag functon instead of the "_3" functions, making the interface simpler and saving some code
 * QCBOREncode_AddRawSimple_2 is removed (the macros that referenced still exist and work the same)
-
-
-
-
-
-
-
-
diff --git a/src/qcbor_encode.c b/src/qcbor_encode.c
index f627af6..a23fda3 100644
--- a/src/qcbor_encode.c
+++ b/src/qcbor_encode.c
@@ -42,6 +42,7 @@
  
  when               who             what, where, why
  --------           ----            ---------------------------------------------------
+ 12/30/18           llundblade      Small efficient clever encode of type & argument.
  11/29/18           llundblade      Rework to simpler handling of tags and labels.
  11/9/18            llundblade      Error codes are now enums.
  11/1/18            llundblade      Floating support.
@@ -602,12 +603,12 @@
  
  Object code sizes on X86 with LLVM compiler and -Os (Dec 14, 2018)
  
- _QCBOREncode_Init   71
+ _QCBOREncode_Init   69
  _QCBOREncode_AddUInt64   76
  _QCBOREncode_AddInt64   87
  _QCBOREncode_AddBuffer   113
  _QCBOREncode_AddTag 27
- _QCBOREncode_AddType7   83
+ _QCBOREncode_AddType7   87
  _QCBOREncode_AddDouble 36
  _QCBOREncode_OpenMapOrArray   103
  _QCBOREncode_CloseMapOrArray   181