@@ -294,7 +294,7 @@ See [the node-validator project][4]for more details on the built in validation m
**Hint: **You can also define a custom function for the logging part. Just pass a function. The first parameter will be the string that is logged.
### Validators and`allowNull`
### Validators and`allowNull`
If a particular field of a model is set to allow null (with `allowNull: true`) and that value has been set to `null`, its validators do not run. This means you can, for instance, have a string field which validates its length to be at least 5 characters, but which also allows`null`.