@@ -22,7 +22,7 @@ contract AlignedProofAggregationService is
2222 /// @dev This can either be a specific SP1Verifier for a specific version, or the
2323 /// SP1VerifierGateway which can be used to verify proofs for any version of SP1.
2424 /// For the list of supported verifiers on each chain, see:
25- /// https://docs.succinct.xyz/onchain- verification/contract-addresses
25+ /// https://docs.succinct.xyz/docs/sp1/ verification/contract-addresses
2626 address public sp1VerifierAddress;
2727
2828 /// @notice The address of the Wallet that is allowed to call the verify function.
@@ -73,7 +73,7 @@ contract AlignedProofAggregationService is
7373 {
7474 (bytes32 merkleRoot ) = abi.decode (sp1PublicValues, (bytes32 ));
7575
76- // In dev mode, poofs are mocked, so we skip the verification part
76+ // In dev mode, proofs are mocked, so we skip the verification part
7777 if (_isSP1VerificationEnabled ()) {
7878 ISP1Verifier (sp1VerifierAddress).verifyProof (sp1AggregatorProgramVKHash, sp1PublicValues, sp1ProofBytes);
7979 }
@@ -88,7 +88,7 @@ contract AlignedProofAggregationService is
8888 {
8989 (bytes32 merkleRoot ) = abi.decode (risc0JournalBytes, (bytes32 ));
9090
91- // In dev mode, poofs are mocked, so we skip the verification part
91+ // In dev mode, proofs are mocked, so we skip the verification part
9292 if (_isRisc0VerificationEnabled ()) {
9393 bytes32 risc0JournalDigest = sha256 (risc0JournalBytes);
9494 IRiscZeroVerifier (risc0VerifierAddress).verify (
0 commit comments