Skip to content

Commit

Permalink
Typo doc in word "exceptoinal" (PegaSysEng#1767)
Browse files Browse the repository at this point in the history
* Typo doc in word "exceptoinal"

* also remaining as a typo
  • Loading branch information
helderjnpinto authored and tmohay committed Jul 29, 2019
1 parent 6412d95 commit 5f4b5be
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class MessageFrame {
* <h3>Message Execution Failed ({@link #COMPLETED_FAILED})</h3>
*
* <p>The message execution failed to execute successfully; most likely due to encountering an
* exceptoinal halting condition. At this point the message frame is finalized and the parent is
* exceptional halting condition. At this point the message frame is finalized and the parent is
* notified.
*
* <h3>Message Execution Completed Successfully ({@link #COMPLETED_SUCCESS})</h3>
Expand Down Expand Up @@ -309,7 +309,7 @@ public void setPC(final int pc) {
this.pc = pc;
}

/** Deducts the remainging gas. */
/** Deducts the remaining gas. */
public void clearGasRemaining() {
this.gasRemaining = Gas.ZERO;
}
Expand Down Expand Up @@ -344,7 +344,7 @@ public void incrementRemainingGas(final Gas amount) {
/**
* Set the amount of remaining gas.
*
* @param amount The amount of remainging gas
* @param amount The amount of remaining gas
*/
public void setGasRemaining(final Gas amount) {
this.gasRemaining = amount;
Expand Down

0 comments on commit 5f4b5be

Please sign in to comment.