Skip to content

Commit

Permalink
Fixes #86
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Moravec committed Jan 18, 2024
1 parent 720a4c9 commit 43c4365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/S3.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ register_s3_method <- function(x, env){

parts <- unlist(strsplit(x, split=".", fixed=TRUE))
generic <- parts[1]
class <- paste(parts[-1], sep=".")
class <- paste0(parts[-1], collapse=".")

registerS3method(generic, class, method, env)

Expand Down

0 comments on commit 43c4365

Please sign in to comment.