diff --git a/build.rs b/build.rs
index 9143d5321a61a174514eb29e557ced82c131bd2a..473cafa793232a2f7bf319653d26bd0288f26494 100644
--- a/build.rs
+++ b/build.rs
@@ -52,7 +52,7 @@ fn main() {
         .open(dest_path)
         .unwrap_or_else(|_| panic!("Can't open '{}'", BUILD_OUT_FILE));
 
-    let module_doc_string = "//! Global constants, such as compiler version used, algorithms, compression and filters supported and others\n";
+    let module_doc_string = "//! Global constants, such as compiler version used, features, platform information and others\n";
     writeln!(file, "{}", module_doc_string).unwrap();
 
     let generated_annotation = "// @generated\n";
diff --git a/src/gen/mock.rs b/src/gen/mock.rs
index c1704a6cafebf32fb95f395ab67382238950ff2e..c1a1c98c18134cb4d9a1c9ba5b8a0462b91e798f 100644
--- a/src/gen/mock.rs
+++ b/src/gen/mock.rs
@@ -1,4 +1,4 @@
-//! Global constants, such as compiler version used, algorithms, compression and filters supported and others
+//! Global constants, such as compiler version used, features, platform information and others
 
 pub const COMPILATION_DATE: &str = "-";
 pub const COMPILATION_TIME: &str = "-";