Commit b414545b by Logan Saether Committed by GitHub

fixed typos XP

parent 3296471b
...@@ -6,7 +6,7 @@ import './StandardToken.sol'; ...@@ -6,7 +6,7 @@ import './StandardToken.sol';
* @title Burnable Token * @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed). * @dev Token that can be irreversibly burned (destroyed).
*/ */
contract BurnableToken is StandardToken{ contract BurnableToken is StandardToken {
/** /**
* @dev Burns a specific amount of tokens. * @dev Burns a specific amount of tokens.
...@@ -17,11 +17,11 @@ contract BurnableToken is StandardToken{ ...@@ -17,11 +17,11 @@ contract BurnableToken is StandardToken{
{ {
require(_value > 0); require(_value > 0);
address burner = masg.sender; address burner = msg.sender;
balances[burner] = balanced[burner].sub(_value); balances[burner] = balances[burner].sub(_value);
totalSupply = totalSupply.sub(_value); totalSupply = totalSupply.sub(_value);
Burn(burner, _value); Burn(burner, _value);
} }
event Burn(address indexed burner, uint indexed value); event Burn(address indexed burner, uint indexed value);
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment