Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static <E> ImmutableList<E> unsafeDelegateList(List<? extends E> list) {
*
* <p>The array must be internally created.
*/
@SuppressWarnings("unchecked") // caller is reponsible for getting this right
@SuppressWarnings("unchecked") // caller is responsible for getting this right
static <E> ImmutableList<E> asImmutableList(Object[] elements) {
return unsafeDelegateList((List) Arrays.asList(elements));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public ImmutableSortedSet<K> keySet() {

@Override
ImmutableSortedSet<K> createKeySet() {
// the keySet() of the delegate is only a Set and TreeMap.navigatableKeySet
// the keySet() of the delegate is only a Set and TreeMap.navigableKeySet
// is not available in GWT yet. To keep the code simple and code size more,
// we make a copy here, instead of creating a view of it.
//
Expand Down
2 changes: 1 addition & 1 deletion guava/src/com/google/common/net/HttpHeaders.java
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ private ReferrerPolicyValues() {}

/**
* The HTTP <a href="https://github.com/WICG/nav-speculation/blob/main/no-vary-search.md">{@code
* No-Vary-Seearch}</a> header field name.
* No-Vary-Search}</a> header field name.
*
* @since 32.0.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ void unpark() {
*
* Additionally, it seems that nestmates do not help with runtime reflection under *Android*, even
* when we use a newer -source and -target. That doesn't normally matter for AbstractFutureState,
* since Android should normally succed in using UnsafeAtomicHelper and thus never even try the
* since Android should normally succeed in using UnsafeAtomicHelper and thus never even try the
* problematic AtomicReferenceFieldUpdaterAtomicHelper code path. However, the same problem *does*
* matter with AggregateFutureState, which does not have an Unsafe-based helper.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ final void interruptTask() {

/**
* Using this as the blocker object allows introspection and debugging tools to see that the
* currentRunner thread is blocked on the progress of the interruptor thread, which can help
* currentRunner thread is blocked on the progress of the interrupter thread, which can help
* identify deadlocks.
*/
@VisibleForTesting
Expand Down