Skip to content

Commit 998204e

Browse files
committed
docs: Organize documentation and fix cargo doc warnings
Changes: - Move development docs to docs/ directory: - IMPLEMENTATION_SUMMARY.md -> docs/IMPLEMENTATION_SUMMARY.md - MISSING_FEATURES.md -> docs/MISSING_FEATURES.md - features.md -> docs/features.md - Move RELEASE_CHECKLIST.md to .github/ directory - Remove RELEASE_NOTES.md (content is in CHANGELOG.md) - Fix lifetime elision warning in src/writer/mod.rs:173 - Add explicit lifetime parameter to TableBuilder return type This resolves the documentation build failure in GitHub Actions which was caused by the lifetime elision warning being treated as an error due to RUSTDOCFLAGS="-D warnings".
1 parent e13ca80 commit 998204e

File tree

6 files changed

+1
-96
lines changed

6 files changed

+1
-96
lines changed
File renamed without changes.

RELEASE_NOTES.md

Lines changed: 0 additions & 95 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/writer/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ impl HwpWriter {
170170
}
171171

172172
/// Create a table builder for advanced table creation
173-
pub fn add_table(&mut self, rows: u32, cols: u32) -> style::TableBuilder {
173+
pub fn add_table(&mut self, rows: u32, cols: u32) -> style::TableBuilder<'_> {
174174
style::TableBuilder::new(self, rows, cols)
175175
}
176176

0 commit comments

Comments
 (0)