docs: Replace > with >= in pragmas to work around the highligher being unable to process the former

This commit is contained in:
Kamil Śliwak
2021-07-15 10:14:00 +02:00
parent 310a35185a
commit d8260a1e93
7 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ if they are marked ``virtual``. For details, please see
.. code-block:: solidity
// SPDX-License-Identifier: GPL-3.0
pragma solidity >0.7.0 <0.9.0;
pragma solidity >=0.7.1 <0.9.0;
contract owned {
constructor() { owner = payable(msg.sender); }