diff options
author | Lazaridis <35095758+lazaridiscom@users.noreply.github.com> | 2018-10-28 12:56:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-28 12:56:15 +0800 |
commit | ccda086f1c1a0844630e8fbaf46a8d8a94003355 (patch) | |
tree | 37c339a2c237ff14bbca78acc2d1bfa6dfc2f5b0 | |
parent | c84003533f3e8511481db3d9b0dfc7f2a9d9564e (diff) | |
download | dexon-solidity-ccda086f1c1a0844630e8fbaf46a8d8a94003355.tar.gz dexon-solidity-ccda086f1c1a0844630e8fbaf46a8d8a94003355.tar.zst dexon-solidity-ccda086f1c1a0844630e8fbaf46a8d8a94003355.zip |
add missing "p"
-rw-r--r-- | CODING_STYLE.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CODING_STYLE.md b/CODING_STYLE.md index 8101db0c..a0fe9864 100644 --- a/CODING_STYLE.md +++ b/CODING_STYLE.md @@ -146,7 +146,7 @@ for (auto i = x->begin(); i != x->end(); ++i) {} ``` No: -```cp +```cpp const double d = 0; int i, j; char *s; |