When documenting code examples and shell commands in project documentation, follow these formatting standards to ensure consistency and clarity: 1. **Use appropriate language specifiers**:
When documenting code examples and shell commands in project documentation, follow these formatting standards to ensure consistency and clarity:
shell
rather than bash
for shell commands that work in any shell environmentcargo install --locked cargo-docs-rs
text
to distinguish them from executable commandscd tokio
cargo fuzz list
fuzz_linked_list
--locked
with installation commands to prevent dependency issuescargo install --locked cargo-spellcheck
These practices improve documentation readability and help users distinguish between what they should type and what they should expect to see as output.
Enter the URL of a public GitHub repository