summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filesystems/fuse-cryptofs/DESCR6
-rw-r--r--filesystems/fuse-curlftpfs/DESCR4
-rw-r--r--filesystems/fuse-lzofs/DESCR10
-rw-r--r--filesystems/fuse/DESCR2
4 files changed, 11 insertions, 11 deletions
diff --git a/filesystems/fuse-cryptofs/DESCR b/filesystems/fuse-cryptofs/DESCR
index 6abef6f7cce..42663858c12 100644
--- a/filesystems/fuse-cryptofs/DESCR
+++ b/filesystems/fuse-cryptofs/DESCR
@@ -1,8 +1,8 @@
-CryptoFS is a encrypted filesystem for Filesystem in Userspace (FUSE).
+CryptoFS is a encrypted file system for File system in Userspace (FUSE).
CryptoFS will use a normal directory to store files encrypted. The
-mountpoint will contain the decrypted files. Every file stored in
-this mountpoint will be written encrypted (data and filename) to the
+mount point will contain the decrypted files. Every file stored in
+this mount point will be written encrypted (data and filename) to the
directory that was mounted. If you unmount the directory the encrypted
data can only be access by mounting the directory with the correct key
again.
diff --git a/filesystems/fuse-curlftpfs/DESCR b/filesystems/fuse-curlftpfs/DESCR
index 979f9d46fe5..5a0f48b27f1 100644
--- a/filesystems/fuse-curlftpfs/DESCR
+++ b/filesystems/fuse-curlftpfs/DESCR
@@ -1,7 +1,7 @@
-CurlFtpFS is a filesystem for acessing FTP hosts based on FUSE and libcurl.
+CurlFtpFS is a file system for accessing FTP hosts based on FUSE and libcurl.
Features
-CurlFtpFS diferentiates itself from other FTP filesystems because it features:
+CurlFtpFS differentiates itself from other FTP file systems because it features:
* SSLv3 and TLSv1 support
* connecting through tunneling HTTP proxies
diff --git a/filesystems/fuse-lzofs/DESCR b/filesystems/fuse-lzofs/DESCR
index fe56c45324f..c3145899e15 100644
--- a/filesystems/fuse-lzofs/DESCR
+++ b/filesystems/fuse-lzofs/DESCR
@@ -1,16 +1,16 @@
-LZOlayer Filesystem is a filesystem which allows you to use transparently
+LZOlayer File System is a file system which allows you to use transparently
compressed files, just as they would be normal files.
Both read and write operations are possible, along with other most common
system calls. It consumes little memory in my opinion, because files are
-divided into blocks, which can be decompressed separetly. In other words,
+divided into blocks, which can be decompressed separately. In other words,
if you (or an application) would like to read byte 4,500,000 in a file
-sized 5,000,000 bytes, it only decompresses a block which constain wanted
+sized 5,000,000 bytes, it only decompresses a block which contain wanted
data. Write operation is based on a packet gathering and after reaching its
limit it 'syncs' the data. It allows it's user to write/modify files pretty
fast, despite the fact it's block divided.
-LZOlayer FileSystem was meant to support only LZO compression algorythm,
+LZOlayer File System was meant to support only LZO compression algorithm,
because it has extremely low compression/decompression time. However,
currently it supports LZO and ZLIB (but only one at the run-time!)
-compression algorythms.
+compression algorithms.
diff --git a/filesystems/fuse/DESCR b/filesystems/fuse/DESCR
index 1bea18dd397..1c7786a40ee 100644
--- a/filesystems/fuse/DESCR
+++ b/filesystems/fuse/DESCR
@@ -1,4 +1,4 @@
-With FUSE it is possible to implement a fully functional filesystem in a
+With FUSE it is possible to implement a fully functional file system in a
userspace program. Features include:
* Simple library API