Mistakes in the wiki for "Back up to multiple storages"?

I am reading up on this wiki page:

This guide could be improved a lot to make it easier for beginners. It is painful to read. Although I don’t get the feeling that ease of use is very important to the developer team…

In the following code example:

# log in to your local storage server
mkdir -p \path\to\dummy\repository
cd \path\to\dummy\repository
duplicacy init repository_id onsite_storage_url
duplicacy add -copy default offsite_storage --bit-identical repository_id offsite_storage_url
duplicacy copy -from default -to offsite_storage

It seems there is an error in line this line (line 5):

duplicacy add -copy default offsite_storage --bit-identical repository_id offsite_storage_url

First of all it’s supposed to be -bit-identical, not --bit-identical, right?

Secondly -bit-identical is a command option so it should come before offsite_storage since the command takes 3 arguments (the last three).

The correct command would be:

duplicacy add -copy default -bit-identical offsite_storage repository_id offsite_storage_url

Both --bit-identical and -bit-identical work but you’re right, it should be consistent.

The wiki is publicly editable btw, I just corrected it.

Thanks. I am new to Duplicacy so I just wanted to make sure I wasn’t way off.