@@ -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.
@@ -75,7 +75,7 @@ contract AlignedProofAggregationService is
7575 revert InvalidProgramId (programId, IAlignedProofAggregationService.VerifierType.SP1, programIds[programId]);
7676 }
7777
78- // In dev mode, poofs are mocked, so we skip the verification part
78+ // In dev mode, proofs are mocked, so we skip the verification part
7979 if (_isSP1VerificationEnabled ()) {
8080 ISP1Verifier (sp1VerifierAddress).verifyProof (programId, sp1PublicValues, sp1ProofBytes);
8181 }
@@ -94,7 +94,7 @@ contract AlignedProofAggregationService is
9494 revert InvalidProgramId (programId, IAlignedProofAggregationService.VerifierType.RISC0, programIds[programId]);
9595 }
9696
97- // In dev mode, poofs are mocked, so we skip the verification part
97+ // In dev mode, proofs are mocked, so we skip the verification part
9898 if (_isRisc0VerificationEnabled ()) {
9999 bytes32 risc0JournalDigest = sha256 (risc0JournalBytes);
100100 IRiscZeroVerifier (risc0VerifierAddress).verify (
0 commit comments