@@ -253,7 +253,7 @@ interface IHorizonStakingMain {
253253 * @param thawRequestId The ID of the thaw request
254254 * @param tokens The amount of tokens being released
255255 * @param shares The amount of shares being released
256- * @param thawingUntil The timestamp until the stake has thawn
256+ * @param thawingUntil The timestamp until the stake has thawed
257257 */
258258 event ThawRequestFulfilled (bytes32 indexed thawRequestId , uint256 tokens , uint256 shares , uint64 thawingUntil );
259259
@@ -417,7 +417,7 @@ interface IHorizonStakingMain {
417417 error HorizonStakingStillThawing (uint256 until );
418418
419419 /**
420- * @notice Thrown when a service provider attempts to operate on verifieres that are not allowed.
420+ * @notice Thrown when a service provider attempts to operate on verifiers that are not allowed.
421421 * @dev Only applies to stake from locked wallets.
422422 */
423423 error HorizonStakingVerifierNotAllowed (address verifier );
@@ -578,7 +578,7 @@ interface IHorizonStakingMain {
578578 /**
579579 * @notice Remove tokens from a provision and move them back to the service provider's idle stake.
580580 * @dev The parameter `nThawRequests` can be set to a non zero value to fulfill a specific number of thaw
581- * requests in the event that fulfulling all of them results in a gas limit error.
581+ * requests in the event that fulfilling all of them results in a gas limit error.
582582 *
583583 * Requirements:
584584 * - Must have previously initiated a thaw request using {thaw}.
@@ -704,7 +704,7 @@ interface IHorizonStakingMain {
704704 * @notice Withdraw undelegated tokens from a provision after thawing.
705705 * Tokens can be automatically re-delegated to another provision by setting `newServiceProvider`.
706706 * @dev The parameter `nThawRequests` can be set to a non zero value to fulfill a specific number of thaw
707- * requests in the event that fulfulling all of them results in a gas limit error.
707+ * requests in the event that fulfilling all of them results in a gas limit error.
708708 *
709709 * Requirements:
710710 * - Must have previously initiated a thaw request using {undelegate}.
@@ -744,7 +744,7 @@ interface IHorizonStakingMain {
744744 /**
745745 * @notice Delegate tokens to the subgraph data service provision.
746746 * This function is for backwards compatibility with the legacy staking contract.
747- * It only allows delegting to the subgraph data service and DOES NOT have slippage protection.
747+ * It only allows delegating to the subgraph data service and DOES NOT have slippage protection.
748748 * @dev See {delegate}.
749749 * @param serviceProvider The service provider address
750750 * @param tokens The amount of tokens to delegate
@@ -754,7 +754,7 @@ interface IHorizonStakingMain {
754754 /**
755755 * @notice Undelegate tokens from the subgraph data service provision and start thawing them.
756756 * This function is for backwards compatibility with the legacy staking contract.
757- * It only allows undelegting from the subgraph data service.
757+ * It only allows undelegating from the subgraph data service.
758758 * @dev See {undelegate}.
759759 * @param serviceProvider The service provider address
760760 * @param shares The amount of shares to undelegate
0 commit comments