In onlyMinter(), there is a line with only _;. I'm having troubles adding a minter address, so I'm just checking the various contracts that go into ERC721. The function is
modifier onlyMinter() {
require(isMinter(msg.sender));
_;
}
What does _; do? Is it an error?