diff --git a/source/_posts/install-and-configure-subversion-svn-server-ubuntu.md b/source/_posts/install-and-configure-subversion-svn-server-ubuntu.md
index ef0c3814..2138540f 100644
--- a/source/_posts/install-and-configure-subversion-svn-server-ubuntu.md
+++ b/source/_posts/install-and-configure-subversion-svn-server-ubuntu.md
@@ -101,8 +101,6 @@ sudo service apache2 restart
I can now browse through my test repository by opening Firefox, and navigating to `http://127.0.0.1/svn/test`. Here, I can now see my three directories, although they are currently all empty.
-
-
## Securing my SVN repositories
Before I start committing any files to the test repository, I want to ensure that only authorised users can view it - currently anyone can view the repository and it's contents, as well as being able to checkout and commit files. To do this, I'm going to require the user to enter a username and a password before viewing or performing any actions with the repository.
@@ -128,8 +126,6 @@ $ htpasswd -cm /etc/svn-auth oliver
I'm prompted to enter and confirm my password, and then my details are saved. The Apache service will need to be restarted again, and then the user will need to authenticate themselves before viewing the repositories.
-
-
## Checking out the repository and commiting files
For example, now want to checkout the files within my repository into a new directory called 'test2' within my home directory. Firstly, I need to create the new directory, and then I can issue the checkout command.