module-compatibility.article: add dot

Change-Id: I2b349c6d4e2c602d34519174af9186b6a236d27b
Reviewed-on: https://go-review.googlesource.com/c/blog/+/241072
Reviewed-by: Jean de Klerk <deklerk@google.com>
diff --git a/content/module-compatibility.article b/content/module-compatibility.article
index 4377b34..9ade469 100644
--- a/content/module-compatibility.article
+++ b/content/module-compatibility.article
@@ -147,7 +147,7 @@
 }
 
 func (r *Reader) Read(b []byte) (int, error) {
-  if rs, ok := r.r(io.Seeker); ok {
+  if rs, ok := r.r.(io.Seeker); ok {
     // Use more efficient rs.Seek.
   }
   // Use less efficient r.r.Read.