Closed layflags closed 7 years ago
The README section Multiple definitions gives the following examples:
/* @define Foo */ .Foo {} /* @define Bar */ .Bar {} /* @define utilities */ .u-something {}
...
/* @define Foo */ .Foo {} /* @end */ .something-something-something {}
But shouldn't the comments start with /**? Single asterisk doesn't work for me, but this does:
/**
/** @define Foo */ .Foo {} /** @define Bar */ .Bar {} /** @define utilities */ .u-something {}
/** @define Foo */ .Foo {} /** @end */ .something-something-something {}
Good catch. Double checked the tests and you are correct. README updated
The README section Multiple definitions gives the following examples:
...
But shouldn't the comments start with
/**
? Single asterisk doesn't work for me, but this does:...