diff --git a/doc/multinode.rst b/doc/multinode.rst
index b867cc1f08aeffd040da0ce017510e4f54dc5c54..37bfe53e1f7328278f6de514aeba6dd210bebc42 100644
--- a/doc/multinode.rst
+++ b/doc/multinode.rst
@@ -52,12 +52,12 @@ Edit ``/etc/default/docker`` and add:
     # Ubuntu
     DOCKER_OPTS="--insecure-registry 192.168.1.100:4000"
 
-If ubuntu is using systemd, additional settings needs to be configured.
+If Ubuntu is using systemd, additional settings needs to be configured.
 Copy docker's systemd unit file to ``/etc/systemd/system/`` directory:
 
 ::
 
-    # cp /lib/systemd/system/docker.service /etc/systemd/system/docker.service
+    cp /lib/systemd/system/docker.service /etc/systemd/system/docker.service
 
 Next, modify ``/etc/systemd/system/docker.service``, add ``environmentFile``
 variable and add ``$DOCKER_OPTS`` to the end of ExecStart in ``[Service]``
diff --git a/doc/quickstart.rst b/doc/quickstart.rst
index ac906a5ff34a7ed1db882d7704b3ed10d941e39b..42eedd3eaaeb51a498e247e10f5118208cfb6013 100644
--- a/doc/quickstart.rst
+++ b/doc/quickstart.rst
@@ -135,6 +135,10 @@ the drop-in unit file as follows, reload and restart the docker service:
     MountFlags=shared
     EOF
 
+Restart docker by executing the following commands:
+
+::
+
     # Run these commands to reload the daemon
     systemctl daemon-reload
     systemctl restart docker