Wrap gen::generate comment to 80 columns
diff --git a/gen/src/mod.rs b/gen/src/mod.rs
index ac8224e..33ab9c9 100644
--- a/gen/src/mod.rs
+++ b/gen/src/mod.rs
@@ -122,9 +122,9 @@
errors.propagate()?;
check::typecheck(errors, apis, types);
errors.propagate()?;
- // Some callers may wish to generate both header and C++
- // from the same token stream to avoid parsing twice. But others
- // only need to generate one or the other.
+ // Some callers may wish to generate both header and implementation from the
+ // same token stream to avoid parsing twice. Others only need to generate
+ // one or the other.
Ok(GeneratedCode {
header: if opt.gen_header {
write::gen(apis, types, opt, true).content()