diff --git a/ChangeLog b/ChangeLog
index 1a96a55d0..f85a54794 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2021-07-09  Anuj Verma  <anujv@iitbhilai.ac.in>
+
+	* src/sdf/ftsdf.c: Update the algorithm overview to explicitly
+	state single channel SDF output.
+
+	* include/freetype/freetype.h (FT_RENDER_MODE_SDF): Same as above.
+
 2021-07-05  Werner Lemberg  <wl@gnu.org>
 
 	* src/base/ftlcdfil.c (FT_Library_SetLcdGeometry): Fix argument.
diff --git a/include/freetype/freetype.h b/include/freetype/freetype.h
index 29a0f7131..f94d88c5b 100644
--- a/include/freetype/freetype.h
+++ b/include/freetype/freetype.h
@@ -3307,13 +3307,13 @@ FT_BEGIN_HEADER
    *     pixels and use the @FT_PIXEL_MODE_LCD_V mode.
    *
    *   FT_RENDER_MODE_SDF ::
-   *     This mode corresponds to 8-bit signed distance fields (SDF)
-   *     bitmaps.  Each pixel in a SDF bitmap contains information about the
-   *     nearest edge of the glyph outline.  The distances are calculated
-   *     from the center of the pixel and are positive if they are filled by
-   *     the outline (i.e., inside the outline) and negative otherwise.
-   *     Check the note below on how to convert the output values to usable
-   *     data.
+   *     This mode corresponds to 8-bit single channel signed distance field
+   *     (SDF) bitmaps.  Each pixel in the SDF grid is the value from the
+   *     pixel's position to the nearest glyph's outline.  The distances are
+   *     calculated from the center of the pixel and are positive if they are
+   *     filled by the outline (i.e., inside the outline) and negative
+   *     otherwise.  Check the note below on how to convert the output values
+   *     to usable data.
    *
    * @note:
    *   The selected render mode only affects vector glyphs of a font.
diff --git a/src/sdf/ftsdf.c b/src/sdf/ftsdf.c
index 65a8f329c..0ca2c479c 100644
--- a/src/sdf/ftsdf.c
+++ b/src/sdf/ftsdf.c
@@ -41,7 +41,8 @@
    *     file `ftbsdf.c` for more.
    *
    *   * The basic idea of generating the SDF is taken from Viktor Chlumsky's
-   *     research paper.
+   *     research paper.  The paper exapain both single and multi channel SDF
+   *     however, this implimentation only generate single channel SDF.
    *
    *       Chlumsky, Viktor: Shape Decomposition for Multi-channel Distance
    *       Fields.  Master's thesis.  Czech Technical University in Prague,
