diff --git a/docs/running_psalm/configuration.md b/docs/running_psalm/configuration.md
index e1c19f2de..1d9fdb8e0 100644
--- a/docs/running_psalm/configuration.md
+++ b/docs/running_psalm/configuration.md
@@ -399,7 +399,21 @@ Optional. Do you use mock classes in your tests? If you want Psalm to ignore the
Optional. Do you have objects with properties that cannot be determined statically? If you want Psalm to treat all properties on a given classlike as mixed, include a fully-qualified path to the class with ``. By default, `stdClass` and `SimpleXMLElement` are configured to be universal object crates.
#### <stubs>
-Optional. If your codebase uses classes and functions that are not visible to Psalm via reflection (e.g. if there are internal packages that your codebase relies on that are not available on the machine running Psalm), you can use stub files. Used by PhpStorm (a popular IDE) and others, stubs provide a description of classes and functions without the implementations. You can find a list of stubs for common classes [here](https://github.com/JetBrains/phpstorm-stubs). List out each file with ``.
+Optional. If your codebase uses classes and functions that are not visible to Psalm via reflection
+(e.g. if there are internal packages that your codebase relies on that are not available on the machine running Psalm),
+you can use stub files. Used by PhpStorm (a popular IDE) and others, stubs provide a description of classes and
+functions without the implementations.
+
+You can find a list of stubs for common classes [here](https://github.com/JetBrains/phpstorm-stubs).
+List out each file with ``. In case classes to be tested use parent classes
+or interfaces defined in a stub file, this stub should be configured with attribute `preloadClasses="true"`.
+
+```xml
+
+
+
+
+```
#### <ignoreExceptions>
Optional. A list of exceptions to not report for `checkForThrowsDocblock` or `checkForThrowsInGlobalScope`. If an exception has `onlyGlobalScope` set to `true`, only `checkForThrowsInGlobalScope` is ignored for that exception, e.g.
diff --git a/docs/security_analysis/avoiding_false_positives.md b/docs/security_analysis/avoiding_false_positives.md
index e94181f7f..130236609 100644
--- a/docs/security_analysis/avoiding_false_positives.md
+++ b/docs/security_analysis/avoiding_false_positives.md
@@ -33,6 +33,7 @@ is considered secure. Only in case function argument `$escape` is true, the corr
`@psalm-taint-escape` is applied for taint type `html` .
```php
+` to indicate a func
In the below example the `input` taint type is specified as a standin for input taints as defined in [Psalm\Type\TaintKindGroup](https://github.com/vimeo/psalm/blob/master/src/Psalm/Type/TaintKindGroup.php).
```php
+