@@ -18,7 +18,7 @@ public interface TransactionManagerCrudOperable extends CrudOperable<Transaction
1818 * (e.g., a conflict error). You can retry the transaction from the beginning
1919 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
2020 * faults. You can try retrying the transaction from the beginning, but the transaction may
21- * still fail if the cause is nontranient
21+ * still fail if the cause is nontransient
2222 * @throws UnknownTransactionStatusException if the status of the commit is unknown
2323 */
2424 @ Override
@@ -32,7 +32,7 @@ Optional<Result> get(Get get)
3232 * (e.g., a conflict error). You can retry the transaction from the beginning
3333 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
3434 * faults. You can try retrying the transaction from the beginning, but the transaction may
35- * still fail if the cause is nontranient
35+ * still fail if the cause is nontransient
3636 * @throws UnknownTransactionStatusException if the status of the commit is unknown
3737 */
3838 @ Override
@@ -46,7 +46,7 @@ List<Result> scan(Scan scan)
4646 * (e.g., a conflict error). You can retry the transaction from the beginning
4747 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
4848 * faults. You can try retrying the transaction from the beginning, but the transaction may
49- * still fail if the cause is nontranient
49+ * still fail if the cause is nontransient
5050 */
5151 @ Override
5252 Scanner getScanner (Scan scan ) throws CrudConflictException , CrudException ;
@@ -58,7 +58,7 @@ List<Result> scan(Scan scan)
5858 * (e.g., a conflict error). You can retry the transaction from the beginning
5959 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
6060 * faults. You can try retrying the transaction from the beginning, but the transaction may
61- * still fail if the cause is nontranient
61+ * still fail if the cause is nontransient
6262 * @throws UnsatisfiedConditionException if a condition is specified, and if the condition is not
6363 * satisfied or the entry does not exist
6464 * @throws UnknownTransactionStatusException if the status of the commit is unknown
@@ -77,7 +77,7 @@ void put(Put put)
7777 * (e.g., a conflict error). You can retry the transaction from the beginning
7878 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
7979 * faults. You can try retrying the transaction from the beginning, but the transaction may
80- * still fail if the cause is nontranient
80+ * still fail if the cause is nontransient
8181 * @throws UnsatisfiedConditionException if a condition is specified, and if the condition is not
8282 * satisfied or the entry does not exist
8383 * @throws UnknownTransactionStatusException if the status of the commit is unknown
@@ -97,7 +97,7 @@ void put(List<Put> puts)
9797 * (e.g., a conflict error). You can retry the transaction from the beginning
9898 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
9999 * faults. You can try retrying the transaction from the beginning, but the transaction may
100- * still fail if the cause is nontranient
100+ * still fail if the cause is nontransient
101101 * @throws UnknownTransactionStatusException if the status of the commit is unknown
102102 */
103103 @ Override
@@ -111,7 +111,7 @@ void insert(Insert insert)
111111 * (e.g., a conflict error). You can retry the transaction from the beginning
112112 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
113113 * faults. You can try retrying the transaction from the beginning, but the transaction may
114- * still fail if the cause is nontranient
114+ * still fail if the cause is nontransient
115115 * @throws UnknownTransactionStatusException if the status of the commit is unknown
116116 */
117117 @ Override
@@ -125,7 +125,7 @@ void upsert(Upsert upsert)
125125 * (e.g., a conflict error). You can retry the transaction from the beginning
126126 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
127127 * faults. You can try retrying the transaction from the beginning, but the transaction may
128- * still fail if the cause is nontranient
128+ * still fail if the cause is nontransient
129129 * @throws UnsatisfiedConditionException if a condition is specified, and if the condition is not
130130 * satisfied or the entry does not exist
131131 * @throws UnknownTransactionStatusException if the status of the commit is unknown
@@ -142,7 +142,7 @@ void update(Update update)
142142 * (e.g., a conflict error). You can retry the transaction from the beginning
143143 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
144144 * faults. You can try retrying the transaction from the beginning, but the transaction may
145- * still fail if the cause is nontranient
145+ * still fail if the cause is nontransient
146146 * @throws UnsatisfiedConditionException if a condition is specified, and if the condition is not
147147 * satisfied or the entry does not exist
148148 * @throws UnknownTransactionStatusException if the status of the commit is unknown
@@ -159,7 +159,7 @@ void delete(Delete delete)
159159 * (e.g., a conflict error). You can retry the transaction from the beginning
160160 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
161161 * faults. You can try retrying the transaction from the beginning, but the transaction may
162- * still fail if the cause is nontranient
162+ * still fail if the cause is nontransient
163163 * @throws UnsatisfiedConditionException if a condition is specified, and if the condition is not
164164 * satisfied or the entry does not exist
165165 * @throws UnknownTransactionStatusException if the status of the commit is unknown
@@ -179,7 +179,7 @@ void delete(List<Delete> deletes)
179179 * (e.g., a conflict error). You can retry the transaction from the beginning
180180 * @throws CrudException if the transaction CRUD operation fails due to transient or nontransient
181181 * faults. You can try retrying the transaction from the beginning, but the transaction may
182- * still fail if the cause is nontranient
182+ * still fail if the cause is nontransient
183183 * @throws UnsatisfiedConditionException if a condition is specified in a {@link Put}, {@link
184184 * Delete}, or {@link Update} command, and if the condition is not satisfied or the entry does
185185 * not exist
@@ -198,7 +198,7 @@ interface Scanner extends CrudOperable.Scanner<TransactionException> {
198198 * (e.g., a conflict error). You can retry the transaction from the beginning
199199 * @throws CrudException if the transaction CRUD operation fails due to transient or
200200 * nontransient faults. You can try retrying the transaction from the beginning, but the
201- * transaction may still fail if the cause is nontranient
201+ * transaction may still fail if the cause is nontransient
202202 */
203203 @ Override
204204 Optional <Result > one () throws CrudConflictException , CrudException ;
@@ -210,7 +210,7 @@ interface Scanner extends CrudOperable.Scanner<TransactionException> {
210210 * (e.g., a conflict error). You can retry the transaction from the beginning
211211 * @throws CrudException if the transaction CRUD operation fails due to transient or
212212 * nontransient faults. You can try retrying the transaction from the beginning, but the
213- * transaction may still fail if the cause is nontranient
213+ * transaction may still fail if the cause is nontransient
214214 */
215215 @ Override
216216 List <Result > all () throws CrudConflictException , CrudException ;
0 commit comments