Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
This commit fixes a couple typos.

Fixes: N-03
  • Loading branch information
marktoda committed Aug 21, 2023
1 parent c478e24 commit 19307ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/DutchDecayLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ library DutchDecayLib {
using FixedPointMathLib for uint256;

/// @notice thrown if the decay direction is incorrect
/// - for DutchInput, startAmount must be less than or equal toendAmount
/// - for DutchInput, startAmount must be less than or equal to endAmount
/// - for DutchOutput, startAmount must be greater than or equal to endAmount
error IncorrectAmounts();

Expand Down
2 changes: 1 addition & 1 deletion src/sample-executors/SwapRouter02Executor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract SwapRouter02Executor is IReactorCallback, Owned {

/// @notice thrown if reactorCallback is called with a non-whitelisted filler
error CallerNotWhitelisted();
/// @notice thrown if reactorCallback is called by an adress other than the reactor
/// @notice thrown if reactorCallback is called by an address other than the reactor
error MsgSenderNotReactor();

ISwapRouter02 private immutable swapRouter02;
Expand Down

0 comments on commit 19307ff

Please sign in to comment.