diff --git a/docs.it4i/general/shell-and-data-access.md b/docs.it4i/general/shell-and-data-access.md
index 0dafd03ca0b78049834b98c4692bdc59e444c162..a1a769fe9c65fdf4bf5971d9ee5ba02f93058167 100644
--- a/docs.it4i/general/shell-and-data-access.md
+++ b/docs.it4i/general/shell-and-data-access.md
@@ -152,7 +152,7 @@ local $ man sshfs
 The rsync client uses ssh to establish connection.
 
 ```console
-local $ rsync my-local-file 
+local $ rsync my-local-file
 ```
 
 ```console
@@ -160,10 +160,10 @@ local $ rsync -r my-local-dir username@cluster-name.it4i.cz:directory
 ```
 
 !!! note
-    The data transfer speed is limited by the single-core ssh encryption speed to about **150 MB/s**  
+    The data transfer speed is limited by the single-core ssh encryption speed to about **150 MB/s**
     Run **multiple rsync** instances for unlimited transfers
 
-Parallel execution of multiple rsync processes utilizes multiple cores to accelerate encryption and multiple tcp streams for enhanced bandwidth.  
+Parallel execution of multiple rsync processes utilizes multiple cores to accelerate encryption and multiple tcp streams for enhanced bandwidth.
 First, set up ssh-agent single sign on:
 
 ```console