HBASE-15863 Typo in Put.java class documentation (Tamer Soliman)

This commit is contained in:
stack 2016-05-20 11:51:36 -07:00
parent 4793988aef
commit 8dc0ae6fb3
1 changed files with 4 additions and 3 deletions

View File

@ -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