Skip to content

Commit

Permalink
docs(controllers): remove needless non-null assertion operator (#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpatiiuk authored Feb 27, 2024
1 parent 563e508 commit f0aa0ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class NamesController {
host: ReactiveControllerHost;
value?: string[];
readonly kinds = Names.kinds;
private task!: Task<[Names.Kind], Names.Result>;
private task: Task<[Names.Kind], Names.Result>;
private _kind: Names.Kind = '';

constructor(host: ReactiveControllerHost) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class NamesController {
host: ReactiveControllerHost;
value?: string[];
readonly kinds = Names.kinds;
private task!: Task<[Names.Kind], Names.Result>;
private task: Task<[Names.Kind], Names.Result>;
private _kind: Names.Kind = '';

constructor(host: ReactiveControllerHost) {
Expand Down

0 comments on commit f0aa0ef

Please sign in to comment.