fixed typos XP

This commit is contained in:
Logan Saether
2017-07-28 16:11:27 -07:00
committed by GitHub
parent 3296471bda
commit b414545b6e

View File

@ -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,8 +17,8 @@ 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);
} }