From 99c939df4142b129557de14ffc383e9190fa3225 Mon Sep 17 00:00:00 2001 From: Bryan Cardillo Date: Thu, 12 Feb 2015 14:17:53 -0500 Subject: [PATCH] fix java doc param tags --- src/main/java/joinery/DataFrame.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/main/java/joinery/DataFrame.java b/src/main/java/joinery/DataFrame.java index f345ada..1970871 100644 --- a/src/main/java/joinery/DataFrame.java +++ b/src/main/java/joinery/DataFrame.java @@ -398,7 +398,7 @@ public DataFrame reindex(final int col, final boolean drop) { * > .index(); * [[alpha, 1], [bravo, 2]] } * - * @param col the column to use as the new index + * @param cols the column to use as the new index * @param drop true to remove the index column from the data, false otherwise * @return a new data frame with index specified */ @@ -419,8 +419,7 @@ public DataFrame reindex(final int[] cols, final boolean drop) { * > .index(); * [alpha, bravo] } * - * @param col the column to use as the new index - * @param drop true to remove the index column from the data, false otherwise + * @param cols the column to use as the new index * @return a new data frame with index specified */ public DataFrame reindex(final int ... cols) { @@ -459,7 +458,7 @@ public DataFrame reindex(final String col, final boolean drop) { * > .index(); * [[alpha, 1], [bravo, 2]] } * - * @param col the column to use as the new index + * @param cols the column to use as the new index * @param drop true to remove the index column from the data, false otherwise * @return a new data frame with index specified */ @@ -479,8 +478,7 @@ public DataFrame reindex(final String[] cols, final boolean drop) { * > .index(); * [alpha, bravo] } * - * @param col the column to use as the new index - * @param drop true to remove the index column from the data, false otherwise + * @param cols the column to use as the new index * @return a new data frame with index specified */ public DataFrame reindex(final String ... cols) {