From b064ee121278328fa179cdd757a2aa4291aa60d3 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Tue, 30 Jul 2024 11:15:52 +0900 Subject: [PATCH] chore(assert): mark `options` argument of `AssertionError` constructor unstable (#5573) --- assert/assertion_error.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assert/assertion_error.ts b/assert/assertion_error.ts index 5f9a523bf..f9d179e70 100644 --- a/assert/assertion_error.ts +++ b/assert/assertion_error.ts @@ -22,7 +22,7 @@ export class AssertionError extends Error { /** Constructs a new instance. * * @param message The error message. - * @param options Additional options. + * @param options Additional options. This argument is still unstable. It may change in the future release. */ constructor(message: string, options?: ErrorOptions) { super(message, options);