# mixin-is-documented

Checks if @mixin is preceeded by at least one SassDoc Comment.
> ** Ignores private and nested mixins. **

## Example of usage

```scss
/// Resets the floats of the grid on an element
/// @name grid.reset
@mixin reset() {
    clear: both;
    display: block;
    float: initial;
}
```
