README.md in vagrant-unison-0.0.6 vs README.md in vagrant-unison-0.0.7

- old
+ new

@@ -22,13 +22,12 @@ 1. After installing, edit your Vagrantfile and add a configuration directive similar to the below: ``` Vagrant.configure("2") do |config| config.vm.box = "dummy" - config.vm.provider :sync do |sync| - sync.local_folder = "src/" #relative to the folder your Vagrantfile is in - sync.remote_folder = "src/" #relative to the vagrant home folder -> /home/vagrant - end + config.sync.host_folder = "src/" #relative to the folder your Vagrantfile is in + config.sync.guest_folder = "src/" #relative to the vagrant home folder -> /home/vagrant + end ``` 1. Start up your starting your vagrant box as normal (eg: `vagrant up`) ## Start syncing Folders