postcss / postcss-bem-linter

A BEM linter for postcss
MIT License
571 stars 35 forks source link

Typo in README? #116

Closed layflags closed 7 years ago

layflags commented 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 {}
simonsmith commented 7 years ago

Good catch. Double checked the tests and you are correct. README updated