HBASE-15863 Typo in Put.java class documentation (Tamer Soliman)
This commit is contained in:
parent
4793988aef
commit
8dc0ae6fb3
|
@ -43,9 +43,10 @@ import org.apache.hadoop.hbase.util.Bytes;
|
||||||
/**
|
/**
|
||||||
* Used to perform Put operations for a single row.
|
* Used to perform Put operations for a single row.
|
||||||
* <p>
|
* <p>
|
||||||
* To perform a Put, instantiate a Put object with the row to insert to and
|
* To perform a Put, instantiate a Put object with the row to insert to, and
|
||||||
* for eachumn to be inserted, execute {@link #addColumn(byte[], byte[], byte[]) add} or
|
* for each column to be inserted, execute {@link #addColumn(byte[], byte[],
|
||||||
* {@link #addColumn(byte[], byte[], long, byte[]) add} if setting the timestamp.
|
* byte[]) add} or {@link #addColumn(byte[], byte[], long, byte[]) add} if
|
||||||
|
* setting the timestamp.
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Public
|
@InterfaceAudience.Public
|
||||||
@InterfaceStability.Stable
|
@InterfaceStability.Stable
|
||||||
|
|
Loading…
Reference in New Issue