diff --git a/Setup-guide.md b/Setup-guide.md
index 6fd34ad..908a5b4 100644
--- a/Setup-guide.md
+++ b/Setup-guide.md
@@ -188,11 +188,12 @@ sciNote team uses [Atom](https://atom.io/) text editor for code writing. Using v
### Atom packages and their plugins
-* [linter](https://atom.io/packages/linter) - a base linter, which provides support for analysing code for potential code and styling errors and warnings
-* [linter-rubocop](https://atom.io/packages/linter-rubocop) - this _Linter_ plugin for provides an interface to [RuboCop](http://batsov.com/rubocop/). It's a _Ruby_ static code analyzer, based on the community Ruby style guide
-* [linter-eslint](https://atom.io/packages/linter-eslint) - this _Linter_ plugin for provides an interface to [ESLint](http://eslint.org/). It will be used with files that have the _JavaScript_ syntax
-* [linter-scss-lint](https://atom.io/packages/linter-scss-lint) - this _Linter_ plugin provides an interface to [scsslint](https://github.com/brigade/scss-lint). It will be used with files that have the _SCSS_ syntax
-* [linter-erb](https://atom.io/packages/linter-erb) - this package will lint your _ERB_ files in Atom by running them through `erb -x` and sending the output to `ruby -c` for checking. NOTE: when using block of code with _ERB_ methods, this linter plugin falsly reports error if the statement part doesn't have additional parameters in one line, e.g. this is OK:
+* [linter](https://atom.io/packages/linter) - a base linter, which provides support for analysing code for potential code and styling errors and warnings.
+* [linter-rubocop](https://atom.io/packages/linter-rubocop) - this _Linter_ plugin for provides an interface to [RuboCop](http://batsov.com/rubocop/). It's a _Ruby_ static code analyzer, based on the community Ruby style guide.
+* [linter-eslint](https://atom.io/packages/linter-eslint) - this _Linter_ plugin for provides an interface to [ESLint](http://eslint.org/). It will be used with files that have the _JavaScript_ syntax.
+* [linter-scss-lint](https://atom.io/packages/linter-scss-lint) - this _Linter_ plugin provides an interface to [scsslint](https://github.com/brigade/scss-lint). It will be used with files that have the _SCSS_ syntax.
+* [linter-erb](https://atom.io/packages/linter-erb) - this package will lint your _ERB_ files in Atom by running them through `erb -x` and sending the output to `ruby -c` for checking.
+**NOTE**: when using block of code with _ERB_ methods, this linter plugin falsly reports error if the statement part doesn't have additional parameters in one line, e.g. this is OK:
`<%= link_to(new_project_experiment_url(@project), remote: true, type: "button") do %>`
` html-code-here`
`<% end %>`