Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update documentation. | chriseth | 2018-08-14 | 1 | -31/+92 |
| | |||||
* | Update style guide with regards to CapWords requirement for contract and ↵ | Luke Schoen | 2018-08-07 | 1 | -5/+63 |
| | | | | file naming. | ||||
* | docs: Fix typos. | Cryptomental | 2018-07-11 | 1 | -5/+5 |
| | | | | | | Used codespell and manual fixes. Refs: #4442 | ||||
* | update the style guide | Leo Arias | 2018-07-04 | 1 | -42/+42 |
| | |||||
* | Fallback function has to be external: backwards-compatible changes. | chriseth | 2018-06-29 | 1 | -7/+7 |
| | |||||
* | Prefer view over constant in the documentation. | Daniel Kirchner | 2018-05-09 | 1 | -2/+5 |
| | |||||
* | docs: clarify the maximum line length style | Leo Arias | 2018-04-25 | 1 | -1/+1 |
| | |||||
* | Fix small formatting issue | wbt | 2018-03-31 | 1 | -1/+1 |
| | | | in which a constant was not treated as code, inconsistent with surrounding examples. | ||||
* | Merge pull request #3587 from OTTTO/develop | chriseth | 2018-03-01 | 1 | -1/+47 |
|\ | | | | | Multiline output parameters and return statements | ||||
| * | Multiline output parameters and return statements | Dax Bondye | 2018-02-27 | 1 | -1/+47 |
| | | |||||
* | | Merge pull request #3575 from OTTTO/develop | chriseth | 2018-02-23 | 1 | -2/+16 |
|\| | | | | | Recommend to explicitly label the visibility of functions. | ||||
| * | Reccomend to explicitly label the visibility of functions. | Dax Bondye | 2018-02-23 | 1 | -2/+16 |
| | | |||||
* | | Merge pull request #3513 from OTTTO/develop | chriseth | 2018-02-22 | 1 | -0/+103 |
|\| | | | | | Add "Maximum Line Length" section | ||||
| * | Recommend consistent style for wrapping long lines. | DYLAN BECKWITH | 2018-02-22 | 1 | -0/+103 |
| | | |||||
* | | Clarify name documentation for mixedCase | William Entriken | 2018-01-30 | 1 | -1/+1 |
|/ | |||||
* | Case convention clarification | wbt | 2018-01-17 | 1 | -1/+1 |
| | | | Constructors follow the contract naming convention, using CapWords, instead of mixedCase. | ||||
* | Prefer CapWords style struct names | William Entriken | 2018-01-15 | 1 | -0/+6 |
| | |||||
* | Fix Solidity warnings | Jim McDonald | 2017-12-13 | 1 | -38/+43 |
| | |||||
* | Update style-guide.rst to include enum style | Kamuela Franco | 2017-12-09 | 1 | -0/+6 |
| | |||||
* | Fixed typos (#3139) | Christian Pamidov | 2017-10-28 | 1 | -2/+2 |
| | |||||
* | Fixed typos | Svetlin Nakov | 2017-10-26 | 1 | -4/+4 |
| | |||||
* | Improved the "Naming" section | Svetlin Nakov | 2017-10-25 | 1 | -16/+18 |
| | | | Improved the "Naming" section. Added naming examples. Improved consistency. | ||||
* | Fix inconsistent use of single backticks | Alex Beregszaszi | 2017-03-16 | 1 | -1/+1 |
| | |||||
* | Clearer language as suggested by @axic | ethers | 2016-11-22 | 1 | -1/+1 |
| | |||||
* | Fallback functions don't always have to be payable | ethers | 2016-11-18 | 1 | -2/+2 |
| | |||||
* | styleguide: Don't include a whitespace in the fallback function | ethers | 2016-11-18 | 1 | -0/+13 |
| | |||||
* | Don't include a whitespace in fallback function | ethers | 2016-11-18 | 1 | -2/+2 |
| | |||||
* | styleguide: Ordering of functions | ethers | 2016-11-18 | 1 | -0/+68 |
| | | | | | Ordering would help readers identify which functions they can call, and to find the "specials" (constructor and fallback function). Mixing the "specials" in the middle of the code, as well as internal functions between external and public functions, don't help readers Based on https://github.com/ConsenSys/MultiSigWallet/issues/19 | ||||
* | Update documentation to version 0.4.0. | chriseth | 2016-09-07 | 1 | -1/+1 |
| | |||||
* | typo | Raghav Dua | 2016-09-06 | 1 | -1/+1 |
| | |||||
* | Update style-guide to use new style | Denton Liu | 2016-08-27 | 1 | -6/+7 |
| | |||||
* | Add double-quotes to style guide | Denton Liu | 2016-08-11 | 1 | -1/+13 |
| | |||||
* | mixedCase for modifiers | ethers | 2016-07-14 | 1 | -1/+1 |
| | |||||
* | Merge pull request #555 from Denton-L/single-line-functions | chriseth | 2016-06-21 | 1 | -1/+10 |
|\ | | | | | Added a Clause in Style Guide about Single Line Function Declarations | ||||
| * | Change whitespace section to include exception | Denton Liu | 2016-05-12 | 1 | -1/+5 |
| | | | | | | | | | | For single-line functions, some whitespace padding makes the functions slightly more readable. | ||||
| * | Changed do_something to doSomething | Denton Liu | 2016-05-12 | 1 | -9/+9 |
| | | | | | | | | This is in accordance to the style guide | ||||
| * | Added a clause about short functions | Denton Liu | 2016-05-06 | 1 | -0/+5 |
| | | |||||
* | | Changed inline code syntax | Denton Liu | 2016-05-30 | 1 | -5/+5 |
| | | | | | | | | Changed from :code:`<inline>` to ``<inline>`` | ||||
* | | Modified style-guide.rst | Denton Liu | 2016-05-30 | 1 | -4/+4 |
| | | | | | | | | Corrected inline code syntax | ||||
* | | Corrected "who's" to "whose" | Denton Liu | 2016-05-19 | 1 | -2/+2 |
| | | |||||
* | | Changed do_something to doSomething | Denton Liu | 2016-05-19 | 1 | -9/+9 |
| | | | | | | | | This is in accordance to the style guide | ||||
* | | Update style-guide.rst | mario02423 | 2016-05-10 | 1 | -1/+1 |
|/ | | | Removed extraneous comma from line 366 | ||||
* | Removed trailing whitespace | Denton Liu | 2016-05-06 | 1 | -2/+2 |
| | |||||
* | Removed bulleted list | Denton Liu | 2016-05-06 | 1 | -3/+3 |
| | |||||
* | Made the style consistent | Denton Liu | 2016-05-06 | 1 | -4/+12 |
| | |||||
* | Update style-guide.rst | ssonicblue | 2016-03-23 | 1 | -2/+8 |
| | | | Update section 'Variable Declarations' for consistency with the format of the rest of the document. | ||||
* | fix spelling and heading title | Piper Merriam | 2016-01-07 | 1 | -3/+3 |
| | |||||
* | use mixedCase | Piper Merriam | 2015-12-17 | 1 | -9/+4 |
| | |||||
* | Flesh out naming convention section of docs | Piper Merriam | 2015-12-17 | 1 | -1/+101 |
| | |||||
* | Added some lost changes. | chriseth | 2015-12-08 | 1 | -1/+1 |
| | |||||
* | Imported documentation. | chriseth | 2015-12-08 | 1 | -0/+540 |