Skip to content

Commit

Permalink
add missing arg to forwarder
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill Müller committed Apr 8, 2016
1 parent 21529db commit 0f89b50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/description.R
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ description <- R6Class("description",
print = function()
idesc_print(self, private),

str = function(by_field = FALSE)
idesc_str(self, private, by_field),
str = function(by_field = FALSE, mode = c("file", "screen"))
idesc_str(self, private, by_field, mode),

normalize = function()
idesc_normalize(self, private),
Expand Down

0 comments on commit 0f89b50

Please sign in to comment.