diff --git a/contracts/MilestonePricing.sol b/contracts/MilestonePricing.sol index 3d8291a0..882cade4 100644 --- a/contracts/MilestonePricing.sol +++ b/contracts/MilestonePricing.sol @@ -30,7 +30,7 @@ contract MilestonePricing is PricingStrategy, Ownable { // UNIX timestamp when this milestone kicks in uint time; - // How many tokens per satoshi you will get after this milestone has been passed + // How many tokens per wei you will get after this milestone has been passed uint price; } diff --git a/contracts/TokenVault.sol b/contracts/TokenVault.sol index b1ff31ab..d7d345e0 100644 --- a/contracts/TokenVault.sol +++ b/contracts/TokenVault.sol @@ -87,7 +87,7 @@ contract TokenVault is Ownable, Recoverable { owner = _owner; - // Invalid owenr + // Invalid owner if(owner == 0) { throw; }