Improve comments style
diff --git a/library/ssl_cli.c b/library/ssl_cli.c
index 25f7b72..0d88364 100644
--- a/library/ssl_cli.c
+++ b/library/ssl_cli.c
@@ -2683,7 +2683,7 @@
     n = cert_type_len;
 
     /*
-     * In the subsequent code there are two paths that make read from buf:
+     * In the subsequent code there are two paths that read from buf:
      *     * the length of the signature algorithms field (if minor version of
      *       SSL is 3),
      *     * distinguished name length otherwise.
@@ -2712,12 +2712,12 @@
 #endif
 
         /*
-         * The farthes access in buf is in the loop few lines below:
+         * The furthest access in buf is in the loop few lines below:
          *     sig_alg[i + 1],
          * where:
          *     sig_alg = buf + ...hdr_len + 3 + n,
          *     max(i) = sig_alg_len - 1.
-         * Therefore the farthest access is:
+         * Therefore the furthest access is:
          *     buf[...hdr_len + 3 + n + sig_alg_len - 1 + 1],
          * which reduces to:
          *     buf[...hdr_len + 3 + n + sig_alg_len],