Skip to content

Commit

Permalink
fix java doc param tags
Browse files Browse the repository at this point in the history
  • Loading branch information
cardillo committed Feb 12, 2015
1 parent 319dbd4 commit 99c939d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/main/java/joinery/DataFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ public DataFrame<V> reindex(final int col, final boolean drop) {
* > .index();
* [[alpha, 1], [bravo, 2]] }</pre>
*
* @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
*/
Expand All @@ -419,8 +419,7 @@ public DataFrame<V> reindex(final int[] cols, final boolean drop) {
* > .index();
* [alpha, bravo] }</pre>
*
* @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<V> reindex(final int ... cols) {
Expand Down Expand Up @@ -459,7 +458,7 @@ public DataFrame<V> reindex(final String col, final boolean drop) {
* > .index();
* [[alpha, 1], [bravo, 2]] }</pre>
*
* @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
*/
Expand All @@ -479,8 +478,7 @@ public DataFrame<V> reindex(final String[] cols, final boolean drop) {
* > .index();
* [alpha, bravo] }</pre>
*
* @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<V> reindex(final String ... cols) {
Expand Down

0 comments on commit 99c939d

Please sign in to comment.