Skip to content

Commit

Permalink
Fix some typos in comments
Browse files Browse the repository at this point in the history
RELNOTES=n/a
PiperOrigin-RevId: 595373073
  • Loading branch information
java-team-github-bot authored and Google Java Core Libraries committed Jan 3, 2024
1 parent f347fb7 commit 1de7270
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions android/guava/src/com/google/common/base/Suppliers.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public T get() {
}
}
}
// This is safe because we checked `initialized.`
// This is safe because we checked `initialized`.
return uncheckedCastNullableTToT(value);
}

Expand Down Expand Up @@ -185,7 +185,7 @@ public T get() {
}
}
}
// This is safe because we checked `delegate.`
// This is safe because we checked `delegate`.
return uncheckedCastNullableTToT(value);
}

Expand Down Expand Up @@ -268,7 +268,7 @@ public T get() {
}
}
}
// This is safe because we checked `expirationNanos.`
// This is safe because we checked `expirationNanos`.
return uncheckedCastNullableTToT(value);
}

Expand Down
6 changes: 3 additions & 3 deletions guava/src/com/google/common/base/Suppliers.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public T get() {
}
}
}
// This is safe because we checked `initialized.`
// This is safe because we checked `initialized`.
return uncheckedCastNullableTToT(value);
}

Expand Down Expand Up @@ -185,7 +185,7 @@ public T get() {
}
}
}
// This is safe because we checked `delegate.`
// This is safe because we checked `delegate`.
return uncheckedCastNullableTToT(value);
}

Expand Down Expand Up @@ -268,7 +268,7 @@ public T get() {
}
}
}
// This is safe because we checked `expirationNanos.`
// This is safe because we checked `expirationNanos`.
return uncheckedCastNullableTToT(value);
}

Expand Down

0 comments on commit 1de7270

Please sign in to comment.