# atParam
Checks if there are as many @param definitions in the comments as there are params in the function or mixin.
Also checks if they have a {type} declaration.
> ** Ignores private functions and mixins. **

## Options (to-do)
string: "both"|"private"|"public"

Define which rules to check against.

## Information about @param
http://sassdoc.com/annotations/#parameter

### Description:
Describes a parameter of the documented item
- Multiple	true
- Default	—
- Aliases	@arg, @argument, @param, @parameter
- Autofilled	false
- Allowed on	functions, mixins
- Extra notes	Default value is optional.
- Description is optional. Hyphen before description is optional.
- Description is parsed as Markdown.*
- Multiple types should be separated by pipes (|).

### Example of usage
```scss
/// @param {type} $name
/// @param {type | othertype} $name
/// @param {type} $name - description
/// @param {type} $name [default value] - description
```

