fix typos

This commit is contained in:
Uwe Steinmann 2022-11-09 19:13:51 +01:00
parent b9311ff1e7
commit 05b616f675

View File

@ -69,7 +69,7 @@ swap file at all or create it outside the WebDAV server. A second problem
arises from how vim modifіes the file you are editing. Before a file
is saved a backup is created by renaming the file to the same name with a
'~' at the end and writing the file content into a new
file with the name of the original file. Afterwards vim deleteѕ the backup
file with the name of the original file. Afterwards vim deletes the backup
file. On a regular file system you
won't see a difference between the file before and after saving, though
it is actually a new one. In SeedDMS you won't notice a difference either
@ -89,7 +89,7 @@ set nowritebackup
set noswapfile
Creating the backup file in a directory outside of WebDAV doesn't help in
this case, because it still does the file renaming which is turned of by
this case, because it still does the file renaming which is turned off by
'nowritebackup'.
cdaver