1 files changed, 3 insertions(+), 1 deletions(-)

M episode11/README.md
M episode11/README.md +3 -1
@@ 109,7 109,9 @@ Let’s add a new function to write timestamps as CBOR values: writeTime. First
 we’ll implement RFC3339 string timestamps, and support other timestamp types
 after.
 
-The [CBOR spec][rfc7049]
+The [CBOR spec][rfc7049] indicates that 
+
+EXPLAIN HOW TAGS WORK
 
     func (e *Encoder) writeTime(v reflect.Value) error {
         if err := e.writeHeader(majorTag, minorTimeString); err != nil {