Skip to content

Commit 0e04d6c

Browse files
Chore: Format files with Prettier
1 parent 2630101 commit 0e04d6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/script/aria.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ const buildInheritedStatesProperties = function (item) {
344344
// Ensure deprecated false properties occur last (if we have multiple inheritance but disagreeing)
345345
// this ensures below that the property is not marked as deprecated (cf. below)
346346
if (a.deprecated !== b.deprecated) {
347-
return a.deprecated ? 1 : (b.deprecated ? -1 : 0);
347+
return a.deprecated ? 1 : b.deprecated ? -1 : 0;
348348
}
349349
}
350350
return a.name.localeCompare(b.name);

0 commit comments

Comments
 (0)