diff --git a/src/utils/huffman.c b/src/utils/huffman.c index c5b322d3..7b9e8fd7 100644 --- a/src/utils/huffman.c +++ b/src/utils/huffman.c @@ -5,7 +5,7 @@ // Additional IP Rights Grant: http://www.webmproject.org/license/additional/ // ----------------------------------------------------------------------------- // -// A utility for reading Canonical Huffman Codes. +// Utilities for building and looking up Huffman trees. // // Author: urvang@google.com (Urvang Joshi) diff --git a/src/utils/huffman.h b/src/utils/huffman.h index f9668ca2..dc3edc81 100644 --- a/src/utils/huffman.h +++ b/src/utils/huffman.h @@ -5,7 +5,7 @@ // Additional IP Rights Grant: http://www.webmproject.org/license/additional/ // ----------------------------------------------------------------------------- // -// A utility for building and reading looking up trees for Huffman coding. +// Utilities for building and looking up Huffman trees. // // Author: urvang@google.com (Urvang Joshi)