Skip to content

Commit 1de7270

Browse files
java-team-github-botGoogle Java Core Libraries
authored and
Google Java Core Libraries
committed
Fix some typos in comments
RELNOTES=n/a PiperOrigin-RevId: 595373073
1 parent f347fb7 commit 1de7270

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

android/guava/src/com/google/common/base/Suppliers.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public T get() {
140140
}
141141
}
142142
}
143-
// This is safe because we checked `initialized.`
143+
// This is safe because we checked `initialized`.
144144
return uncheckedCastNullableTToT(value);
145145
}
146146

@@ -185,7 +185,7 @@ public T get() {
185185
}
186186
}
187187
}
188-
// This is safe because we checked `delegate.`
188+
// This is safe because we checked `delegate`.
189189
return uncheckedCastNullableTToT(value);
190190
}
191191

@@ -268,7 +268,7 @@ public T get() {
268268
}
269269
}
270270
}
271-
// This is safe because we checked `expirationNanos.`
271+
// This is safe because we checked `expirationNanos`.
272272
return uncheckedCastNullableTToT(value);
273273
}
274274

guava/src/com/google/common/base/Suppliers.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public T get() {
140140
}
141141
}
142142
}
143-
// This is safe because we checked `initialized.`
143+
// This is safe because we checked `initialized`.
144144
return uncheckedCastNullableTToT(value);
145145
}
146146

@@ -185,7 +185,7 @@ public T get() {
185185
}
186186
}
187187
}
188-
// This is safe because we checked `delegate.`
188+
// This is safe because we checked `delegate`.
189189
return uncheckedCastNullableTToT(value);
190190
}
191191

@@ -268,7 +268,7 @@ public T get() {
268268
}
269269
}
270270
}
271-
// This is safe because we checked `expirationNanos.`
271+
// This is safe because we checked `expirationNanos`.
272272
return uncheckedCastNullableTToT(value);
273273
}
274274

0 commit comments

Comments
 (0)