Skip to content

Commit

Permalink
Apply suggestions from @kartikeyakirar
Browse files Browse the repository at this point in the history
Co-authored-by: kartikeya kirar <[email protected]>
Signed-off-by: André Veríssimo <[email protected]>
  • Loading branch information
averissimo and kartikeyakirar authored Feb 13, 2024
1 parent 3ec9d7b commit 61fb099
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/Queue.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#'
#' Abstract data type that stores and returns any number of elements.
#'
#' @details
#' A `Queue` object stores all elements in a single vector,
#' thus all data types can be stored, but silent coercion may occur.
#'
Expand Down Expand Up @@ -79,7 +80,7 @@ Queue <- R6::R6Class( # nolint
#' @description
#' Returns the number of elements in `Queue`.
#'
#' @return Integer of length 1.
#' @return `integer(1)`.
#'
size = function() {
length(self$get())
Expand Down

0 comments on commit 61fb099

Please sign in to comment.