Skip to content

Commit

Permalink
Merge pull request imapsync#415 from polluks2/master
Browse files Browse the repository at this point in the history
Fixed typos
  • Loading branch information
gilleslamiral authored Oct 10, 2023
2 parents 5d6bc81 + 7d7110d commit c6d3925
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ OPTIONS

--subfolder1 str : Syncs the host1 folders hierarchy which is under folder
str to the root hierarchy of host2.
It's the couterpart of a sync done by --subfolder2
It's the counterpart of a sync done by --subfolder2
when doing it in the reverse order.
Backup/Restore scenario:
Use --subfolder2 str for a backup to the folder str
Expand Down
2 changes: 1 addition & 1 deletion examples/imapsync_example.bat
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
@REM start syncing messages.

@REM In case you are impatient, just remove --justfolders --dry
@REM in the firt place and go. Imapsync is not that bad by default anyway!
@REM in the first place and go. Imapsync is not that bad by default anyway!


.\imapsync.exe --host1 "test1.lamiral.info" --user1 "test1" --password1 "secret1" ^
Expand Down
6 changes: 3 additions & 3 deletions examples/sync_parallel_curl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@


# "$@" will be replaced by the parameters of this script itself,
# the one you are reading now. It's usefull if you want to
# add temporarly a parameter for all runs without editing any file.
# the one you are reading now. It's useful if you want to
# add temporarily a parameter for all runs without editing any file.
# For example,
# sync_parallel_curl.sh --justlogin
# will run all imapsync with the --justlogin parameter added.
Expand All @@ -98,7 +98,7 @@ check_parallel_is_here() {
parallel --version > /dev/null || { echo "parallel command is not installed. Install it first."; return 1; }
}

# First, there is no need to go further if the parallel command is not avalable
# First, there is no need to go further if the parallel command is not available
# one the current system.

check_parallel_is_here || exit 1 ;
Expand Down
6 changes: 3 additions & 3 deletions examples/sync_parallel_unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@


# "$@" will be replaced by the parameters of this script itself,
# the one you are reading now. It's usefull if you want to
# add temporarly a parameter for all runs without editing any file.
# the one you are reading now. It's useful if you want to
# add temporarily a parameter for all runs without editing any file.
# For example,
# sync_parallel_unix.sh --justlogin
# will run all imapsync with the --justlogin parameter added.
Expand All @@ -102,7 +102,7 @@ check_parallel_is_here() {
parallel --version > /dev/null || { echo "parallel command is not installed. Install it first."; return 1; }
}

# First, there is no need to go further if the parallel command is not avalable
# First, there is no need to go further if the parallel command is not available
# one the current system.

check_parallel_is_here || exit 1 ;
Expand Down

0 comments on commit c6d3925

Please sign in to comment.