|
simonc |
Fixing a typo in FileUtils#ln_sf documentation
…
The `FileUtils#ln_sf` documentation indicates that calling it is the same as calling `ln_s(src, dest, :force)` which is wrong. This commit fixes it by replacing `:force` with `:force => true`. |
e8e697d
|
Fixing a typo in FileUtils#ln_sf documentation …
The `FileUtils#ln_sf` documentation indicates that calling it is the same as calling `ln_s(src, dest, :force)` which is wrong. This commit fixes it by replacing `:force` with `:force => true`.
The
FileUtils#ln_sf
documentation indicates that calling it is the same as callingln_s(src, dest, :force)
which is wrong.This commit fixes it by replacing
:force
with:force => true
.