Fixing a typo.

Hey, just noticed a minor typo in the docs and wanted to submit a PR.
This commit is contained in:
James D. Bohrman 2019-10-17 05:03:07 -04:00 committed by GitHub
parent d2914a85ee
commit aff776a805
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ is very simple:
Vagrant.configure("2") do |config|
# other config here
config.vm.synced_folder "src/", "/srv/website"
config.vm.synced_folder "src/", "/src/website"
end
```