1diff --git a/_posts/2019-04-22-ansible-part-2.md b/_posts/2019-04-22-ansible-part-2.md
2index 940468e34150623214c2892a8a9eeb14bb816329..66818f224a275f830baaaf7b6768e15aa6697730 100644
3--- a/_posts/2019-04-22-ansible-part-2.md
4+++ b/_posts/2019-04-22-ansible-part-2.md
5@@ -11,9 +11,9 @@ Now we're gonna setup ansible to work with a git repository. The process is quite similar with `ansible-playbook` the only difference is that command will get a repository instead of a folder. Following the previews example we'll get vim setup automated.
6
7 Do create a git repository wherever you see fit ([gitlab](https://about.gitlab.com/) and [github](https://github.com/) offer free repositories). For this task we're gonna need to add only two file: one for the `yml` file describing the tasks and the `.vimrc` file.
8
9-In the `.vimrc` add your own configuration, you can see mine [over here](https://github.com/gabrielgio/homestation/blob/241b27285d8cba8548277f3508e097439831a6eb/config/.vimrc), it is pretty simple as I don't use it but for simple text editing (like this post) so you can start with it if you don't have one.
10+In the `.vimrc` add your own configuration, you can see mine [over here](https://github.com/gabrielgio/homestation/blob/241b27285d8cba8548277f3508e097439831a6eb/config/.vimrc), it is pretty simple as I don't use it but for simple text editing (like this post) so you can start with that if you don't have one.
11
12-The `yml` file will have two tasks, one is to install vim itself, identical as it is in the part 1.
13+The `yml` file will have two tasks, one is to install vim itself, identical as in the part 1.
14
15 {% highlight yml %}
16 # main.yml
17@@ -24,7 +24,7 @@ name: vim
18 state: latest
19 {% endhighlight %}
20
21-The second task it to copy `.vimrc` file to your `$HOME`, for it we shall use [copy module](https://docs.ansible.com/ansible/latest/modules/copy_module.html):
22+To copy `.vimrc` file to your `$HOME` we going to use [copy module](https://docs.ansible.com/ansible/latest/modules/copy_module.html):
23
24 {% highlight yml %}
25 # main.yml
26@@ -41,7 +41,7 @@
27 And now we just need to run `ansible-pull` command
28
29 {% highlight bash %}
30-#you may need run it as a sudo
31+# you may need run it as a sudo
32 ansible-pull -U <YOUR_REPO> -i all main.yml
33 {% endhighlight %}
34
35@@ -49,9 +49,9 @@ Params:
36 * `-i` is a list of hosts.
37 * `-U` is the git repository url.
38
39-Remember `man` is your best friend take a look at `man ansible-pull` to know more about the params.
40+Remember `man` is your best friend take a look at `man ansible-pull` to know more about its parameters.
41
42-The best part if you want to test quickly you can just run my sample and see the result:
43+The best part you can quickly test and see the result by just running my sample:
44 {% highlight bash %}
45 ansible-pull -U https://github.com/gabrielgio/homestation.git -C debcf3458df511aef9f7dca0cb73f6cf6baddd5d -i all main.yml
46 {% endhighlight %}