diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/blog/polymorphism-in-solidity.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blog/polymorphism-in-solidity.html b/src/blog/polymorphism-in-solidity.html index a6a6aca..9c55923 100644 --- a/src/blog/polymorphism-in-solidity.html +++ b/src/blog/polymorphism-in-solidity.html @@ -39,7 +39,7 @@ struct file { // ... }; </pre> -</a> +</p> <p> The important bit is the <code>f_op</code> field, of type <code>struct @@ -62,7 +62,6 @@ struct file_operations { // ... }; </pre> -</a> It's mostly a bunch of function pointers that appear to be... operations one might want to perform on a file. @@ -166,6 +165,7 @@ This doesn't look terrible yet. <p> Now imagine that you wanted to handle even more asset classes. +</p> <p> What if there was a token <code>YourToken</code> that had <code>mint</code> and |