xo: Fix unicorn/prevent-abbreviations.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2021-01-25 11:04:52 -08:00
parent cc2424e0bf
commit 855d99dfa0
4 changed files with 9 additions and 9 deletions

View File

@@ -129,9 +129,9 @@ export default class Logger {
return timestamp;
}
reportSentry(err: unknown): void {
reportSentry(error: unknown): void {
if (reportErrors) {
captureException(err);
captureException(error);
}
}