Skip to content

Commit b064ee1

Browse files
authored
chore(assert): mark options argument of AssertionError constructor unstable (denoland#5573)
1 parent 606838b commit b064ee1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assert/assertion_error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class AssertionError extends Error {
2222
/** Constructs a new instance.
2323
*
2424
* @param message The error message.
25-
* @param options Additional options.
25+
* @param options Additional options. This argument is still unstable. It may change in the future release.
2626
*/
2727
constructor(message: string, options?: ErrorOptions) {
2828
super(message, options);

0 commit comments

Comments
 (0)