aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemco Bloemen <remco@wicked.ventures>2018-02-24 07:13:50 +0800
committerAmir Bandeali <abandeali1@gmail.com>2018-04-21 04:56:16 +0800
commit012ee310a4be515ff286a7a6bfefff126af152e7 (patch)
tree76d2da2b28659879b27511c4d5ad2000357d5016
parent1e07fcacacd760ce3dee1e70597ef2ffd2847daa (diff)
downloaddexon-sol-tools-012ee310a4be515ff286a7a6bfefff126af152e7.tar
dexon-sol-tools-012ee310a4be515ff286a7a6bfefff126af152e7.tar.gz
dexon-sol-tools-012ee310a4be515ff286a7a6bfefff126af152e7.tar.bz2
dexon-sol-tools-012ee310a4be515ff286a7a6bfefff126af152e7.tar.lz
dexon-sol-tools-012ee310a4be515ff286a7a6bfefff126af152e7.tar.xz
dexon-sol-tools-012ee310a4be515ff286a7a6bfefff126af152e7.tar.zst
dexon-sol-tools-012ee310a4be515ff286a7a6bfefff126af152e7.zip
Fix documentation
-rw-r--r--packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol b/packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol
index 2d04c7c6d..0a99168eb 100644
--- a/packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol
+++ b/packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol
@@ -63,7 +63,7 @@ contract MixinSignatureValidator is
// Always invalid signature
// Like Illegal, this is always implicitly available and therefore
// offered explicitly. It can be implicitly created by providing
- // a validly formatted but incorrect signature.
+ // a correctly formatted but incorrect signature.
} else if (signatureType == SignatureType.Invalid) {
require(signature.length == 1);
isValid = false;
@@ -73,8 +73,8 @@ contract MixinSignatureValidator is
// The signer has initiated the call. In the case of non-contract
// accounts it means the transaction itself was signed.
// Example: let's say for a particular operation three signatures
- // A, B are required. To submit the transaction, A and B can give
- // a signature to C, who can then submit the transaction using
+ // A, B and C are required. To submit the transaction, A and B can
+ // give a signature to C, who can then submit the transaction using
// `Caller` for his own signature. Or A and C can sign and B can
// submit using `Caller`. Having `Caller` allows this flexibility.
} else if (signatureType == SignatureType.Caller) {