Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Sass Boolean, make it a class to match spec #359

Merged
merged 2 commits into from
Jan 30, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update jsdoc to use @link
Goodwine committed Jan 25, 2025
commit ff754a3ae9517d56d91ee974f08bf202ee8cb518
2 changes: 1 addition & 1 deletion lib/src/value/boolean.ts
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ import {Value} from './index';
* Sass boolean.
*
* This is an abstract class that cannot be directly instantiated. Instead,
* use the provided `true` and `false` singleton instances.
* use the provided {@link sassTrue} and {@link sassFalse} singleton instances.
*/
export abstract class SassBoolean extends Value {
abstract readonly value: boolean;