Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
Fixes #7118

RELNOTES=n/a
PiperOrigin-RevId: 645447918
  • Loading branch information
testwill authored and Google Java Core Libraries committed Jun 21, 2024
1 parent 20348c7 commit 263712a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void testSubscriberThrowsException() throws Exception {
final RecordingSubscriberExceptionHandler handler = new RecordingSubscriberExceptionHandler();
final EventBus eventBus = new EventBus(handler);
final RuntimeException exception =
new RuntimeException("but culottes have a tendancy to ride up!");
new RuntimeException("but culottes have a tendency to ride up!");
final Object subscriber =
new Object() {
@Subscribe
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void testSubscriberThrowsException() throws Exception {
final RecordingSubscriberExceptionHandler handler = new RecordingSubscriberExceptionHandler();
final EventBus eventBus = new EventBus(handler);
final RuntimeException exception =
new RuntimeException("but culottes have a tendancy to ride up!");
new RuntimeException("but culottes have a tendency to ride up!");
final Object subscriber =
new Object() {
@Subscribe
Expand Down

0 comments on commit 263712a

Please sign in to comment.