From 71a95f2d3761a1f0371f55b42f9d37482266cb1f Mon Sep 17 00:00:00 2001 From: semiromid Date: Thu, 22 Apr 2021 02:57:24 +0300 Subject: [PATCH] Update css-syntax-error.d.ts Fixed description of `CssSyntaxError#source`. --- lib/css-syntax-error.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/css-syntax-error.d.ts b/lib/css-syntax-error.d.ts index 1dbccd453..76d099a95 100644 --- a/lib/css-syntax-error.d.ts +++ b/lib/css-syntax-error.d.ts @@ -126,7 +126,7 @@ export default class CssSyntaxError { * * ```js * error.source //=> 'a { b {} }' - * error.input.column //=> 'a b { }' + * error.input.source //=> 'a b { }' * ``` */ source?: string