Skip to content

Commit 3e565bd

Browse files
author
Rahul Maganti
committed
evm: fix indentation + spelling
1 parent 1071a65 commit 3e565bd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

evm/src/Transceiver/WormholeTransceiver/WormholeTransceiver.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import "./WormholeTransceiverState.sol";
1616

1717
/// @title WormholeTransceiver
1818
/// @author Wormhole Project Contributors.
19-
/// @notice Transceiver implementation for the Wormhole.
19+
/// @notice Transceiver implementation for Wormhole.
2020
///
2121
/// @dev This contract is responsible for sending and receiving NTT messages
2222
/// that are authenticated through Wormhole Core.

evm/src/interfaces/INttManager.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ interface INttManager is INttManagerState {
5555
error RefundFailed(uint256 refundAmount);
5656

5757
/// @notice Error when the tranceiver already attested to the message.
58-
/// To ensure the client does not continue to initiate calls to the ateestationReceived function.
58+
/// To ensure the client does not continue to initiate calls to the attestationReceived function.
5959
/// @dev Selector 0x2113894.
6060
/// @param nttManagerMessageHash The hash of the message.
6161
error TransceiverAlreadyAttestedToMessage(bytes32 nttManagerMessageHash);
@@ -80,7 +80,7 @@ interface INttManager is INttManagerState {
8080
error InvalidRecipient();
8181

8282
/// @notice Error when the amount burned is different than the balance difference,
83-
/// since NTT does not support burn fees.
83+
/// since NTT does not support burn fees.
8484
/// @dev Selector 0x02156a8f.
8585
/// @param burnAmount The amount burned.
8686
/// @param balanceDiff The balance after burning.

evm/src/interfaces/IWormholeTransceiver.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ interface IWormholeTransceiver is IWormholeTransceiverState {
5757
error TransferAlreadyCompleted(bytes32 vaaHash);
5858

5959
/// @notice Receive an attested message from the verification layer.
60-
/// This function should verify the `encodedVm` and then deliver the attestation
60+
/// This function should verify the `encodedVm` and then deliver the attestation
6161
/// to the transceiver NttManager contract.
6262
/// @param encodedMessage The attested message.
6363
function receiveMessage(bytes memory encodedMessage) external;
6464

6565
/// @notice Parses the encoded instruction and returns the instruction struct.
66-
/// This instruction is specific to the WormholeTransceiver contract.
66+
/// This instruction is specific to the WormholeTransceiver contract.
6767
/// @param encoded The encoded instruction.
6868
/// @return instruction The parsed `WormholeTransceiverInstruction`.
6969
function parseWormholeTransceiverInstruction(bytes memory encoded)

0 commit comments

Comments
 (0)