Skip to content

Commit

Permalink
Style consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
aadler committed May 21, 2021
1 parent 7d917f2 commit ef5fe9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/lamW.R
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
lambertW0 <- function(x){
lambertW0 <- function(x) {
LAM <- double(length(x))
LAM <- lambertW0_C(x)
return(LAM)
}

lambertWm1 <- function(x){
lambertWm1 <- function(x) {
LAM <- double(length(x))
LAM <- lambertWm1_C(x)
return(LAM)
Expand Down

0 comments on commit ef5fe9c

Please sign in to comment.