diff --git a/resources/docs/Documentation.md b/resources/docs/Documentation.md
index fe8f33ded..0021c0f94 100644
--- a/resources/docs/Documentation.md
+++ b/resources/docs/Documentation.md
@@ -84,12 +84,12 @@ With ISA, RSS Guard only downloads articles which are new or were updated. While
4 [OAuth](https://en.wikipedia.org/wiki/OAuth) is secure way of authenticating users in online applications.
### Article Filtering
-Sometimes you need to tweak incoming article - mark it starred, remove ads from its contents or simply ignore it. That's where filtering feature comes in.
+Sometimes you need to automatically tweak incoming article - mark it starred, remove ads from its contents or simply ignore it. That's where filtering feature comes in.
#### Writing article filter
-Article filters are small `JavaScript` pieces of code which must provide function with prototype:
+Article filters are small scripts which are executed automatically when articles/feeds are downloaded. Article filters are `JavaScript` pieces of code which must provide function with prototype:
```js
function filterMessage() { }