Skip to content

Commit

Permalink
Fix typo: anamoly -> anomaly
Browse files Browse the repository at this point in the history
Change-Id: I197b71a28879264e0631798522dd07a8f358835a

Closes #14134.

Change-Id: I197b71a28879264e0631798522dd07a8f358835a
PiperOrigin-RevId: 406125820
  • Loading branch information
ulfjack authored and copybara-github committed Oct 28, 2021
1 parent 41881c0 commit c952ba7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public BuildEventStreamProtos.BuildEvent asStreamProto(BuildEventContext convert
.setCode(exitCode.getNumericExitCode())
.build();

BuildEventStreamProtos.BuildFinished.AnomalyReport protoAnamolyReport =
BuildEventStreamProtos.BuildFinished.AnomalyReport protoAnomalyReport =
BuildEventStreamProtos.BuildFinished.AnomalyReport.newBuilder()
.setWasSuspended(wasSuspended)
.build();
Expand All @@ -83,7 +83,7 @@ public BuildEventStreamProtos.BuildEvent asStreamProto(BuildEventContext convert
.setExitCode(protoExitCode)
.setFinishTime(Timestamps.fromMillis(finishTimeMillis))
.setFinishTimeMillis(finishTimeMillis)
.setAnomalyReport(protoAnamolyReport)
.setAnomalyReport(protoAnomalyReport)
.build();
return GenericBuildEvent.protoChaining(this).setFinished(finished).build();
}
Expand Down

0 comments on commit c952ba7

Please sign in to comment.