Commit b414545b by Logan Saether Committed by GitHub

fixed typos XP

parent 3296471b
......@@ -6,7 +6,7 @@ import './StandardToken.sol';
* @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract BurnableToken is StandardToken{
contract BurnableToken is StandardToken {
/**
* @dev Burns a specific amount of tokens.
......@@ -17,8 +17,8 @@ contract BurnableToken is StandardToken{
{
require(_value > 0);
address burner = masg.sender;
balances[burner] = balanced[burner].sub(_value);
address burner = msg.sender;
balances[burner] = balances[burner].sub(_value);
totalSupply = totalSupply.sub(_value);
Burn(burner, _value);
}
......
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