Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
code review
  • Loading branch information
dilipbiswal committed Aug 15, 2018
commit 5247ab5ef79c7d28db5298aea45b7dcad5ec8ab8
4 changes: 2 additions & 2 deletions R/pkg/R/DataFrame.R
Original file line number Diff line number Diff line change
Expand Up @@ -2870,7 +2870,7 @@ setMethod("intersect",
#' intersectAllDF <- intersectAll(df1, df2)
#' }
#' @rdname intersectAll
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto here

#' @note intersectAll since 2.4
#' @note intersectAll since 2.4.0
setMethod("intersectAll",
signature(x = "SparkDataFrame", y = "SparkDataFrame"),
function(x, y) {
Expand Down Expand Up @@ -2927,7 +2927,7 @@ setMethod("except",
#' exceptAllDF <- exceptAll(df1, df2)
#' }
#' @rdname exceptAll
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is a bug in except there should only be one @rdname for each

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@felixcheung Thanks .. Did you want the original function except fixed at part of this ?

#' @note exceptAll since 2.4
#' @note exceptAll since 2.4.0
setMethod("exceptAll",
signature(x = "SparkDataFrame", y = "SparkDataFrame"),
function(x, y) {
Expand Down