Fix an implementation comment
It was pointed out that a code comment mixed up the difference between
ascending and descending. This resolves that issue.
Change-Id: Ie71862b03bc23d9c20ac29ca78c076e05e47476a
diff --git a/include/webassets.hpp b/include/webassets.hpp
index ae8effd..1c2fa3e 100644
--- a/include/webassets.hpp
+++ b/include/webassets.hpp
@@ -57,7 +57,7 @@
// In certain cases, we might have both a gzipped version of the file AND a
// non-gzipped version. To avoid duplicated routes, we need to make sure we
// get the gzipped version first. Because the gzipped path should be longer
- // than the non gzipped path, if we sort in Ascending order, we should be
+ // than the non gzipped path, if we sort in descending order, we should be
// guaranteed to get the gzip version first.
std::vector<filesystem::directory_entry> paths(filesystem::begin(dirIter),
filesystem::end(dirIter));