Fix comment nits

Suggested by James Zern.

Change-Id: I2a6f1b195679f4aa4cc13c0677c7b181849c3c46
diff --git a/av1/encoder/encoder.h b/av1/encoder/encoder.h
index 7f65399..d13f08f 100644
--- a/av1/encoder/encoder.h
+++ b/av1/encoder/encoder.h
@@ -3436,7 +3436,7 @@
   uint64_t *src_sad_blk_64x64;
 
   /*!
-   * SEE between the current frame and the reconstructed last frame
+   * SSE between the current frame and the reconstructed last frame
    */
   uint64_t rec_sse;
 
diff --git a/av1/encoder/speed_features.c b/av1/encoder/speed_features.c
index d2562bc..9fbfbd7 100644
--- a/av1/encoder/speed_features.c
+++ b/av1/encoder/speed_features.c
@@ -1318,7 +1318,7 @@
     if (speed >= 6) sf->rt_sf.skip_newmv_mode_based_on_sse = 2;
     if (speed == 7) {
       sf->rt_sf.prefer_large_partition_blocks = 1;
-      // Enable this feature for [360p, 720p] res range initially.
+      // Enable this feature for [360p, 720p] resolution range initially.
       if (!cpi->rc.rtc_external_ratectrl &&
           AOMMIN(cm->width, cm->height) <= 720)
         sf->hl_sf.accurate_bit_estimate = cpi->oxcf.q_cfg.aq_mode == NO_AQ;