Skip to content

Commit

Permalink
Remove an extra space in Lesson 5 Chapter 10 starting code (Cryptozom…
Browse files Browse the repository at this point in the history
  • Loading branch information
gas1cent authored Dec 28, 2021
1 parent 7544064 commit 123321f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion en/5/10-safemath-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ material:
}
function transferFrom(address _from, address _to, uint256 _tokenId) external payable {
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals [_tokenId] == msg.sender);
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals[_tokenId] == msg.sender);
_transfer(_from, _to, _tokenId);
}
Expand Down
2 changes: 1 addition & 1 deletion es/5/10-safemath-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ material:
}
function transferFrom(address _from, address _to, uint256 _tokenId) external payable {
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals [_tokenId] == msg.sender);
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals[_tokenId] == msg.sender);
_transfer(_from, _to, _tokenId);
}
Expand Down
2 changes: 1 addition & 1 deletion fa/5/10-safemath-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ material:
}
function transferFrom(address _from, address _to, uint256 _tokenId) external payable {
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals [_tokenId] == msg.sender);
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals[_tokenId] == msg.sender);
_transfer(_from, _to, _tokenId);
}
Expand Down
2 changes: 1 addition & 1 deletion it/5/10-safemath-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ material:
}
function transferFrom(address _from, address _to, uint256 _tokenId) external payable {
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals [_tokenId] == msg.sender);
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals[_tokenId] == msg.sender);
_transfer(_from, _to, _tokenId);
}
Expand Down
2 changes: 1 addition & 1 deletion ru/5/10-safemath-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ material:
}
function transferFrom(address _from, address _to, uint256 _tokenId) external payable {
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals [_tokenId] == msg.sender);
require (zombieToOwner[_tokenId] == msg.sender || zombieApprovals[_tokenId] == msg.sender);
_transfer(_from, _to, _tokenId);
}
Expand Down

0 comments on commit 123321f

Please sign in to comment.