From dac9e6f2ee8140adc89ab342c67225509de4552f Mon Sep 17 00:00:00 2001
From: Jan Siwiec <jan.siwiec@vsb.cz>
Date: Mon, 13 Sep 2021 10:38:08 +0200
Subject: [PATCH] generalization

---
 docs.it4i/general/shell-and-data-access.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs.it4i/general/shell-and-data-access.md b/docs.it4i/general/shell-and-data-access.md
index 73fd9fe2d..74a8d07cd 100644
--- a/docs.it4i/general/shell-and-data-access.md
+++ b/docs.it4i/general/shell-and-data-access.md
@@ -126,7 +126,7 @@ Data in and out of the system may be transferred by SCP and SFTP protocols.
 
 Authentication is by [private key][1] only.
 
-On Linux or Mac, use an SCP or SFTP client to transfer data to Barbora:
+On Linux or Mac, use an SCP or SFTP client to transfer data to the cluster:
 
 ```console
 $ scp -i /path/to/id_rsa my-local-file username@cluster-name.it4i.cz:directory/file
@@ -142,13 +142,13 @@ or
 $ sftp -o IdentityFile=/path/to/id_rsa username@cluster-name.it4i.cz
 ```
 
-A very convenient way to transfer files in and out of cluster is via the fuse filesystem [SSHFS][b].
+A very convenient way to transfer files in and out of the cluster is via the fuse filesystem [SSHFS][b].
 
 ```console
 $ sshfs -o IdentityFile=/path/to/id_rsa username@cluster-name.it4i.cz:. mountpoint
 ```
 
-Using SSHFS, the user's Barbora home directory will be mounted on your local computer, just like an external disk.
+Using SSHFS, the user's home directory will be mounted on your local computer, just like an external disk.
 
 Learn more about SSH, SCP, and SSHFS by reading the manpages:
 
-- 
GitLab