Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/functional/generics-type-classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ mod bootp {
pub(crate) struct AuthInfo(); // no authentication in bootp
}

// private module, lest outside users invent their own protocol kinds!
// private module, lets outside users invent their own protocol kinds!

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// private module, lets outside users invent their own protocol kinds!
// Keep the module private to prevent outside users from inventing their own protocols.

mod proto_trait {
use super::{bootp, nfs};
use std::path::{Path, PathBuf};
Expand Down