1
0

[MINOR] fix typos

This commit is contained in:
Mathieu
2019-12-25 20:26:16 +08:00
committed by leesf
parent 8affdf8bcb
commit 3c811ec29b
2 changed files with 2 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ public class Table implements Iterable<List<String>> {
/** /**
* Add all rows. * Add all rows.
* *
* @param rows Rows to be aded * @param rows Rows to be added
* @return * @return
*/ */
public Table addAll(List<List<Comparable>> rows) { public Table addAll(List<List<Comparable>> rows) {

View File

@@ -92,7 +92,7 @@ import scala.Tuple2;
* Hoodie Write Client helps you build datasets on HDFS [insert()] and then perform efficient mutations on an HDFS * Hoodie Write Client helps you build datasets on HDFS [insert()] and then perform efficient mutations on an HDFS
* dataset [upsert()] * dataset [upsert()]
* <p> * <p>
* Note that, at any given time, there can only be one Spark job performing these operatons on a Hoodie dataset. * Note that, at any given time, there can only be one Spark job performing these operations on a Hoodie dataset.
*/ */
public class HoodieWriteClient<T extends HoodieRecordPayload> extends AbstractHoodieClient { public class HoodieWriteClient<T extends HoodieRecordPayload> extends AbstractHoodieClient {