Skip to content

Commit 149cfdb

Browse files
Rollup merge of #153319 - DanielEScherzer:ie-dots, r=jhpratt
Comments and docs: add missing periods to "ie." "i.e." is short for the Latin "id est" and thus both letters should be followed by periods.
2 parents ac27cc6 + 7ff962b commit 149cfdb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

crates/base-db/src/input.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ impl CrateGraphBuilder {
742742
deps.into_iter()
743743
}
744744

745-
/// Returns all crates in the graph, sorted in topological order (ie. dependencies of a crate
745+
/// Returns all crates in the graph, sorted in topological order (i.e. dependencies of a crate
746746
/// come before the crate itself).
747747
fn crates_in_topological_order(&self) -> Vec<CrateBuilderId> {
748748
let mut res = Vec::new();

crates/hir-def/src/visibility.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ impl Visibility {
146146

147147
/// Returns the most permissive visibility of `self` and `other`.
148148
///
149-
/// If there is no subset relation between `self` and `other`, returns `None` (ie. they're only
149+
/// If there is no subset relation between `self` and `other`, returns `None` (i.e. they're only
150150
/// visible in unrelated modules).
151151
pub(crate) fn max(
152152
self,
@@ -212,7 +212,7 @@ impl Visibility {
212212

213213
/// Returns the least permissive visibility of `self` and `other`.
214214
///
215-
/// If there is no subset relation between `self` and `other`, returns `None` (ie. they're only
215+
/// If there is no subset relation between `self` and `other`, returns `None` (i.e. they're only
216216
/// visible in unrelated modules).
217217
pub(crate) fn min(
218218
self,

0 commit comments

Comments
 (0)