Skip to content

Commit

Permalink
Fix possible typo (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
dahong67 committed Apr 3, 2024
1 parent 31e7859 commit 7e5653c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ const RCALL_UUID = UUID("6f49c342-dc21-5d91-9882-a32aef131414")
CondaPkg.add("r")
target_rhome = joinpath(CondaPkg.envdir(), "lib", "R")
if Sys.iswindows()
target_libr = joinpath(Rhome, "bin", Sys.WORD_SIZE==64 ? "x64" : "i386", "R.dll")
target_libr = joinpath(target_rhome, "bin", Sys.WORD_SIZE==64 ? "x64" : "i386", "R.dll")
else
target_libr = joinpath(Rhome, "lib", "libR.$(Libdl.dlext)")
target_libr = joinpath(target_rhome, "lib", "libR.$(Libdl.dlext)")
end
set_preferences!(RCALL_UUID, "Rhome" => target_rhome, "libR" => target_libr)
```
Expand Down

0 comments on commit 7e5653c

Please sign in to comment.