diff options
Diffstat (limited to 'std/encoding/_yaml/error.ts')
-rw-r--r-- | std/encoding/_yaml/error.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/encoding/_yaml/error.ts b/std/encoding/_yaml/error.ts index a96ab11d6..77473fbd8 100644 --- a/std/encoding/_yaml/error.ts +++ b/std/encoding/_yaml/error.ts @@ -8,7 +8,7 @@ import type { Mark } from "./mark.ts"; export class YAMLError extends Error { constructor( message = "(unknown reason)", - protected mark: Mark | string = "" + protected mark: Mark | string = "", ) { super(`${message} ${mark}`); this.name = this.constructor.name; |