Skip to content

Commit 5d2435b

Browse files
authored
Fix typos (#1163)
1 parent e9b6b0f commit 5d2435b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sudoers/entry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ fn write_spec<'a>(
263263
// 1) this recursion will terminate, since "alias_list" has become smaller
264264
// by the "alias_list.find()" above
265265
// 2) to get the correct macro expansion, alias_list has to be (reverse-)topologically
266-
// sorted so that "later" definitions do not refer back to "earlier" definitons.
266+
// sorted so that "later" definitions do not refer back to "earlier" definitions.
267267
write_spec(f, spec, alias_list.clone(), sign, separator)?;
268268
is_first_iteration = false;
269269
}

src/system/interface.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl FromStr for UserId {
107107
}
108108
}
109109

110-
/// This trait/module is here to not make this crate independent (at the present time) in the idiosyncracies of user representation details
110+
/// This trait/module is here to not make this crate independent (at the present time) in the idiosyncrasies of user representation details
111111
/// (which we may decide over time), as well as to make explicit what functionality a user-representation must have; this
112112
/// interface is not set in stone and "easy" to change.
113113
pub trait UnixUser {

0 commit comments

Comments
 (0)