aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #964 from Denton-L/fix-documentationBob Summerwill2016-08-305-30/+38
|\ | | | | Fix documentation
| * Fix line lengthDenton Liu2016-08-291-1/+1
| |
| * Fix selfdestruct documentationDenton Liu2016-08-291-5/+5
| |
| * Fix syntax for Windows batch fileDenton Liu2016-08-291-1/+1
| |
| * Clarify typecastingDenton Liu2016-08-271-2/+7
| |
| * Clean up contracts.rstDenton Liu2016-08-271-14/+17
| |
| * Fix grammar errorDenton Liu2016-08-271-1/+1
| |
| * Cleanup docsDenton Liu2016-08-271-6/+6
| |
* | Create contribution guidelinesDenton Liu2016-08-303-0/+59
|/
* Merge pull request #946 from bobsummerwill/build_from_source_docsBob Summerwill2016-08-271-67/+116
|\ | | | | Updated Solidity documentation's "building from source" section
| * Tweaks as suggested by chriseth.Bob Summerwill2016-08-271-3/+35
| | | | | | | | | | I will commit this as-is, because it has been pending for a few days over minor issues. We will continue to iterate on this.
| * Updated Solidity documentation's "building from source" section.Bob Summerwill2016-08-251-64/+81
| | | | | | | | | | It now references install_deps.sh/.bat, and also adds instructions for Windows. Cherry picked some further tweaks from Denton-L. Thanks :-)
* | Added library keywordDenton Liu2016-08-261-1/+1
| |
* | Added ufixed and fixed keywordsDenton Liu2016-08-261-1/+3
| |
* | Merge pull request #953 from Denton-L/fallback-stuffchriseth2016-08-261-18/+27
|\ \ | | | | | | Write about what fallback functions cannot do
| * | Add "Sending Ether"Denton Liu2016-08-261-0/+1
| | |
| * | Correct spacingDenton Liu2016-08-261-18/+18
| | |
| * | Write about what fallback functions cannot doDenton Liu2016-08-261-0/+8
| | |
* | | Disallow fallback function to return values.chriseth2016-08-261-1/+2
|/ /
* | Merge pull request #925 from mocamircea/patch-10chriseth2016-08-261-11/+56
|\ \ | | | | | | Update contracts.rst
| * | Update contracts.rstMircea Moca2016-08-251-9/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | I left the example with contract C only, showing the access specifiers discussed at 186-188. The specifier of data is left public since nothing is related to accessor functions now. Added a separate example with contracts C, D and E to show specifier's effect. Added a separate example to prove the synthesizing of accessor functions. Added a new example to show the internal/external call of the accessor, according to existent discussion.
| * | Update contracts.rstMircea Moca2016-08-191-4/+4
| | | | | | | | | I think it's more clear now and without the risk of mentioning the yet discussed accessor concept
| * | Update contracts.rstMircea Moca2016-08-181-7/+14
| | | | | | | | | Extended example according to the discussed stuff, clarification & typos
* | | Merge pull request #913 from chriseth/auctionchriseth2016-08-251-15/+29
|\ \ \ | |_|/ |/| | Updated the function withdraw() in the SimpleAuction and BlindAuction…
| * | Updated the function withdraw() in the SimpleAuction and BlindAuction ↵Alex Darby2016-08-191-15/+29
| |/ | | | | | | contracts to not use a 'throw' if a address send() fails.
* | Fix creating contracts sectionDenton Liu2016-08-241-3/+5
| |
* | Rename "call data" to "calldata"Denton Liu2016-08-241-2/+2
| |
* | Add commaDenton Liu2016-08-241-1/+1
| |
* | Fix control-structuresDenton Liu2016-08-241-4/+4
| |
* | Update contracts.rstDenton Liu2016-08-241-3/+4
| |
* | Fix description about how blocks workDenton Liu2016-08-241-1/+1
| |
* | Change XXX bit to XXX-bitDenton Liu2016-08-241-6/+6
| |
* | Fix typoDenton Liu2016-08-241-1/+1
| |
* | Change example code formattingDenton Liu2016-08-241-3/+3
| |
* | Change capitalisationDenton Liu2016-08-242-2/+2
| |
* | Remove trailing whitespacesDenton Liu2016-08-243-5/+5
| |
* | Small documentation updateDave Hoover2016-08-241-1/+1
| |
* | Merge pull request #706 from Denton-L/withdrawal-patternchriseth2016-08-206-5/+113
|\ \ | | | | | | Add Withdrawal Pattern Example
| * | Remove throw from withdrawal patternDenton Liu2016-08-191-3/+7
| | |
| * | Fix codeDenton Liu2016-08-121-6/+6
| | |
| * | Reference inspirationDenton Liu2016-08-121-1/+2
| | |
| * | Add minor correctionsDenton Liu2016-08-121-9/+10
| | |
| * | Update contracts and descriptionsDenton Liu2016-08-111-4/+13
| | |
| * | Change withdrawal exampleDenton Liu2016-08-111-78/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | The example is now a "King of the Ether"-esque contract. This is actually relevant as they suffered an attack because of an almost identical issue. See the post-mortem here: https://www.kingoftheether.com/postmortem.html
| * | Use store exampleDenton Liu2016-08-101-96/+68
| | |
| * | Change example to auctionDenton Liu2016-08-101-24/+100
| | |
| * | Remove trailing whitespaceDenton Liu2016-08-104-4/+4
| | |
| * | Fix withdrawal pattern documentationDenton Liu2016-08-101-4/+4
| | |
| * | Link to withdraw patternDenton Liu2016-08-102-1/+3
| | |
| * | Add section about withdrawal patternDenton Liu2016-08-103-0/+78
| | |
* | | Document throwing on contract-creation failDenton Liu2016-08-191-1/+2
| | |
* | | Document throwing on calling empty codeDenton Liu2016-08-181-1/+2
| | |
* | | Add documentation about throwingDenton Liu2016-08-181-2/+3
| |/ |/|
* | Merge pull request #839 from chriseth/checkcodechriseth2016-08-171-0/+4
|\ \ | | | | | | BREAKING: Make function calls throw if target does not have code.
| * | Make function calls throw if target does not have code.chriseth2016-08-171-0/+4
| | | | | | | | | | | | | | | Low-level calls still just execute and will actually report "success". This allows `x.call.value(y)()` for x being a non-contract account.
* | | Merge pull request #888 from chriseth/throwOnDivZerochriseth2016-08-171-0/+2
|\ \ \ | | | | | | | | Throw on division by zero.
| * | | Throw on division by zero.chriseth2016-08-171-0/+2
| |/ /
* / / BREAKING: return only exits current function/modifierchriseth2016-08-171-7/+33
|/ /
* | Merge pull request #905 from ethereum/chriseth-patch-1chriseth2016-08-171-1/+1
|\ \ | | | | | | Docs: wording: recursive call exploit -> reentrancy exploit
| * | Wording: recursive call exploit -> reentrancy exploitchriseth2016-08-161-1/+1
| | |
* | | Merge pull request #838 from chriseth/ecrecoverchriseth2016-08-172-2/+2
|\ \ \ | | | | | | | | Make ecrecover return zero for malformed input.
| * | | Actually better to return zero on error.chriseth2016-08-162-2/+2
| |/ /
* | | Fix docs. (#916)chriseth2016-08-171-3/+9
| | |
* | | Introduce hex literals (#832)Alex Beregszaszi2016-08-161-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Introduce hex keyword token * Support hex literals * Include tests for hex literals * Document hex literals
* | | fix typo in costs modifier (#850)gl3672016-08-161-3/+5
| | |
* | | Merge pull request #903 from mocamircea/patch-8chriseth2016-08-161-3/+10
|\ \ \ | | | | | | | | Update control-structures.rst
| * | | Update control-structures.rstMircea Moca2016-08-161-3/+8
| | | | | | | | | | | | Splitted example.
| * | | Update control-structures.rstMircea Moca2016-08-161-1/+3
| |/ /
* | | Merge pull request #710 from chriseth/throwFailedCreatechriseth2016-08-161-0/+37
|\ \ \ | | | | | | | | BREAKING: Throw if contract creation fails.
| * | | Throw if contract creation fails.chriseth2016-08-161-0/+37
| |/ /
* | | Merge pull request #904 from mocamircea/patch-9chriseth2016-08-161-1/+1
|\ \ \ | | | | | | | | Update control-structures.rst
| * | | Update control-structures.rstMircea Moca2016-08-161-1/+1
| | | |
| * | | Update control-structures.rstMircea Moca2016-08-161-1/+1
| |/ / | | | | | | typo -> coherence with previous occurrence in the document of C/JavaScript
* / / Update index.rstJacob Benjamin Cholewa2016-08-161-0/+3
|/ / | | | | Added a link for Syntastic. A vim plugin that provide compile checking using the solc compiler.
* | Merge pull request #886 from mocamircea/patch-6chriseth2016-08-121-1/+1
|\ \ | | | | | | Update units-and-global-variables.rst
| * | Update units-and-global-variables.rstMircea Moca2016-08-121-1/+1
| | | | | | | | | Coherence -> at the bottom of the document Wei is used several times, not "wei".
* | | Update units-and-global-variables.rstMircea Moca2016-08-121-1/+1
|/ / | | | | "Suffixes of" is wrong and misleading. "seconds", "minutes" etc. are suffixes of literal numbers.
* | Merge pull request #858 from Denton-L/quotes-docschriseth2016-08-124-12/+24
|\ \ | | | | | | Document existence of single-quotes
| * | Correct all UTF-8 spellingsDenton Liu2016-08-112-6/+6
| | |
| * | Add double-quotes to style guideDenton Liu2016-08-111-1/+13
| | |
| * | Change i.e. to e.g.Denton Liu2016-08-111-1/+1
| | |
| * | Mention single-quotesDenton Liu2016-08-111-2/+2
| | |
| * | Correct UTF-8 spellingsDenton Liu2016-08-111-3/+3
| | |
* | | Merge pull request #844 from Denton-L/remove-afterchriseth2016-08-121-2/+1
|\ \ \ | | | | | | | | BREAKING: Remove after
| * | | Remove after keyword from documentationDenton Liu2016-08-111-2/+1
| |/ /
* | | Merge pull request #857 from cholewa1992/patch-1chriseth2016-08-121-1/+1
|\ \ \ | |/ / |/| | Update installing-solidity.rst
| * | Update installing-solidity.rstJacob Benjamin Cholewa2016-08-101-1/+1
| |/ | | | | The JsonCpp library is also a needed dependency
* | Merge pull request #824 from Denton-L/fix-typochriseth2016-08-111-2/+2
|\ \ | |/ |/| Fix typo
| * Add missing sDenton Liu2016-08-091-1/+1
| |
| * Refix typoDenton Liu2016-08-091-1/+1
| |
| * Fix typoDenton Liu2016-08-051-1/+1
| |
* | Merge pull request #820 from mocamircea/patch-3chriseth2016-08-081-0/+20
|\ \ | | | | | | Update layout-of-source-files.rst
| * | Update layout-of-source-files.rstMircea Moca2016-08-051-0/+20
| | | | | | | | | An example of natspec comment.
* | | Merge pull request #819 from mocamircea/patch-2chriseth2016-08-081-1/+1
|\ \ \ | | | | | | | | Update layout-of-source-files.rst
| * | | Update layout-of-source-files.rstMircea Moca2016-08-051-1/+1
| |/ / | | | | | | better reading
* / / Update layout-of-source-files.rstMircea Moca2016-08-051-1/+1
|/ / | | | | The phrase eds with the given example.
* | Merge pull request #666 from axic/feature/unicode-escapechriseth2016-08-051-1/+3
|\ \ | | | | | | Support unicode escape characters
| * | Document \n, \xNN and \uNNNNAlex Beregszaszi2016-08-051-0/+2
| | |
| * | Fix String Literals documentation about implicit conversionsAlex Beregszaszi2016-08-051-1/+1
| |/
* / Build using solidity-standalone.chriseth2016-08-041-38/+10
|/
* Merge pull request #776 from chriseth/deploydocschriseth2016-08-011-1/+5
|\ | | | | Deploydocs
| * Made snippet work as is.chriseth2016-08-011-3/+3
| |
| * Update contracts.rstcseberino2016-08-011-2/+6
| |
* | Merge pull request #750 from ethereum/chriseth-patch-2chriseth2016-08-011-1/+1
|\ \ | | | | | | Correct source map definition.
| * | Correct source map definition.chriseth2016-07-271-1/+1
| | |
* | | Merge pull request #764 from Denton-L/make-safechriseth2016-08-011-1/+2
|\ \ \ | | | | | | | | Throw if send() fails in example code
| * | | Throw if send() fails in example codeDenton Liu2016-07-301-1/+2
| | |/ | |/|
* | | Merge pull request #732 from Denton-L/document-precedencechriseth2016-08-013-1/+67
|\ \ \ | |/ / |/| | Document precedence
| * | Add unary operations to the tableDenton Liu2016-07-291-0/+2
| | |
| * | Link to order of precedence tableDenton Liu2016-07-291-1/+1
| | |
| * | Remove >>> and >>>= operatorsDenton Liu2016-07-271-3/+3
| | |
| * | Revert "Remove comma operator"Denton Liu2016-07-271-0/+3
| | | | | | | | | | | | This reverts commit 1ec74f8cc4b952331b3003e2326eb90aa7fc2e55.
| * | Fix assignment operatorsDenton Liu2016-07-271-0/+1
| | |
| * | Remove comma operatorDenton Liu2016-07-271-3/+0
| | |
| * | Add link to operator tableDenton Liu2016-07-212-0/+5
| | |
| * | Create order of precedence tableDenton Liu2016-07-211-0/+58
| | |
* | | Mix is discontinuedchriseth2016-07-271-3/+6
| |/ |/|
* | Update contracts.rstManidos2016-07-271-1/+1
| | | | | | | | | | | | | | I've changed line 88, because **if (msg.sender == creator)** threw an exception in solidity browser compier. Untitled:25:13: Error: Operator == not compatible with types address and contract TokenCreator if (msg.sender == creator) ^-------------------^
* | Merge pull request #721 from ethers/patch-5chriseth2016-07-271-1/+1
|\ \ | | | | | | mixedCase for modifiers
| * | mixedCase for modifiersethers2016-07-141-1/+1
| | |
* | | Added tx.origin cautionDennisBPeterson2016-07-221-0/+39
| | |
* | | Missing '_' in modifier 'timedTransitions'Weiyang Zhu2016-07-211-0/+1
| | |
* | | Source mapping documentation.chriseth2016-07-211-0/+53
| | |
* | | Merge pull request #704 from ethereum/malleabilitychriseth2016-07-191-1/+5
|\ \ \ | |_|/ |/| | Expanded malleability risks.
| * | Expanded malleability risks.chriseth2016-07-071-2/+6
| | |
* | | Fix typosDenton Liu2016-07-132-3/+3
| | |
* | | Update copyrightDenton Liu2016-07-121-1/+1
| |/ |/|
* | Merge pull request #680 from Denton-L/fix-679chriseth2016-07-092-4/+12
|\ \ | | | | | | Add section about default values of variables
| * | Incorporate changesDenton Liu2016-07-091-2/+1
| | |
| * | Apply fixesDenton Liu2016-07-051-5/+4
| | |
| * | Add reference to default values in mapping sectionDenton Liu2016-07-041-1/+1
| | |
| * | Fix incorrect directivesDenton Liu2016-07-041-3/+5
| | |
| * | Add section about default values of variablesDenton Liu2016-06-231-2/+10
| | |
* | | Merge pull request #689 from redsquirrel/patch-1chriseth2016-07-091-1/+1
|\ \ \ | | | | | | | | Removing "easy" language
| * | | Removing "easy" languageDave Hoover2016-06-271-1/+1
| | | | | | | | | | | | I'm trying to steer us away from language that over-simplifies the complexity of writing secure smart contracts.
* | | | Merge pull request #700 from Denton-L/secchriseth2016-07-092-49/+52
|\ \ \ \ | | | | | | | | | | Minor Changes to #693
| * | | | Repharse sentenceDenton Liu2016-07-091-1/+2
| | | | |
| * | | | Mention dangers of polymorphismDenton Liu2016-07-081-1/+4
| | | | |
| * | | | Incorporate correctionsDenton Liu2016-07-082-4/+4
| | | | |
| * | | | Reformat codeDenton Liu2016-07-051-17/+16
| | | | |
| * | | | Correct grammar and languageDenton Liu2016-07-052-34/+34
| | |_|/ | |/| |
* | | | Merge pull request #703 from raineorshine/patch-2chriseth2016-07-081-0/+12
|\ \ \ \ | | | | | | | | | | Documentation: Add Solidity Tools
| * | | | Documentation: Add Solidity ToolsRaine Revere2016-07-061-0/+12
| |/ / /
* / / / Fixed mix-up of variable names in Sent eventsvantetobias2016-07-061-2/+2
|/ / / | | | | | | event Sent(address from, address to, uint amount) defines "amount" variable but it is two times referred to as "value", which can be a bit confusing for the reader.
* | | Fixes.chriseth2016-07-041-10/+23
| | |
* | | Security Considerationschriseth2016-07-047-32/+250
|/ /
* | Merge pull request #672 from pjdelport/patch-1chriseth2016-06-271-1/+1
|\ \ | | | | | | Update link to atom-ethereum-interface package
| * | Update link to atom-ethereum-interface packagePi Delport2016-06-201-1/+1
| | |
* | | Fixing library examples that don't compile.Dave Hoover2016-06-251-5/+5
| |/ |/| | | Addressing https://github.com/ethereum/solidity/issues/684
* | Merge pull request #658 from graup/graup-patch-1chriseth2016-06-211-1/+1
|\ \ | | | | | | Fix typo in Libraries section
| * | Fix typo in Libraries sectionPaul Grau2016-06-181-2/+2
| | |
* | | Merge pull request #555 from Denton-L/single-line-functionschriseth2016-06-211-1/+10
|\ \ \ | | | | | | | | Added a Clause in Style Guide about Single Line Function Declarations
| * | | Change whitespace section to include exceptionDenton Liu2016-05-121-1/+5
| | | | | | | | | | | | | | | | | | | | For single-line functions, some whitespace padding makes the functions slightly more readable.
| * | | Changed do_something to doSomethingDenton Liu2016-05-121-9/+9
| | | | | | | | | | | | | | | | This is in accordance to the style guide
| * | | Added a clause about short functionsDenton Liu2016-05-061-0/+5
| | | |
* | | | Merge pull request #669 from fabioberger/patch-2chriseth2016-06-211-2/+2
|\ \ \ \ | | | | | | | | | | Fix two documentation typos
| * | | | Fix two documentation typosFabio Berger2016-06-201-2/+2
| | |_|/ | |/| |
* | | | Merge pull request #673 from pjdelport/patch-2chriseth2016-06-211-1/+1
|\ \ \ \ | | | | | | | | | | Restore correct inline code sample
| * | | | Restore correct inline code samplePi Delport2016-06-201-1/+1
| |/ / / | | | | | | | | (This appears to have been accidentally broken in a73428b4.)
* / / / Add missing inline code tagPi Delport2016-06-201-1/+1
|/ / /
* | | Fix mis-typed word. The recipient will `run` out of gas, not `go` out of gasFabio Berger2016-06-191-1/+1
| | |
* | | Added missing word in sentenceFabio Berger2016-06-181-1/+1
| |/ |/|
* | Merge pull request #640 from chriseth/globalPathschriseth2016-06-102-5/+29
|\ \ | | | | | | Allow remappings to change depending on the context.
| * | Allow remappings to change depending on the context.chriseth2016-06-092-5/+29
| | |
* | | Merge pull request #616 from chriseth/docschriseth2016-06-103-29/+61
|\ \ \ | |/ / |/| | Removed some problems in documentation examples.
| * | Typo.chriseth2016-06-091-1/+1
| | |
| * | stylechriseth2016-06-021-3/+5
| | |
| * | Removed some problems in documentation examples.chriseth2016-05-313-28/+58
| | |
* | | Merge pull request #618 from chriseth/inlineArrayschriseth2016-06-091-0/+38
|\ \ \ | | | | | | | | Document inline arrays.
| * | | Fixed typo.chriseth2016-06-031-1/+1
| | | |
| * | | Document inline arrays.chriseth2016-05-311-0/+38
| |/ /
* | | Merge pull request #612 from Denton-L/global-variableschriseth2016-06-074-37/+83
|\ \ \ | | | | | | | | Cleaned up and modified global variables documentation
| * | | Added back 'For more information...' statementDenton Liu2016-06-031-0/+2
| | | |
| * | | Changed reference nameDenton Liu2016-06-022-3/+2
| | | |
| * | | Fixed a bad referenceDenton Liu2016-06-021-1/+2
| | | |
| * | | Added newlines to fix build errorDenton Liu2016-06-021-0/+2
| | | |
| * | | Documented max stack depth at 1024Denton Liu2016-06-022-2/+2
| | | |
| * | | Make address link look betterDenton Liu2016-06-021-4/+2
| | | |
| * | | uint20 is not a typeDenton Liu2016-06-021-2/+2
| | | |
| * | | Copied warning message from cherry-picked commitDenton Liu2016-06-021-3/+4
| | | |
| * | | Updated incorrect list numberDenton Liu2016-06-021-1/+1
| | | |
| * | | Document some pitfalls in connection with "send".chriseth2016-06-022-0/+24
| | | |
| * | | Link address-type and address-global methodsDenton Liu2016-06-022-0/+4
| | | |
| * | | Corrected typoDenton Liu2016-06-021-1/+1
| | | |
| * | | Named the global function parametersDenton Liu2016-05-312-6/+6
| | | |
| * | | Added section on address-related constantsDenton Liu2016-05-311-0/+15
| | | |
| * | | Corrected descriptions of hashesDenton Liu2016-05-311-3/+3
| | | |
| * | | Removed leading spaceDenton Liu2016-05-311-14/+14
| | | |
| * | | Made explicit that we use KECCAK-256Denton Liu2016-05-312-2/+2
| | | |
| * | | Removed ending periods for consistencyDenton Liu2016-05-311-3/+3
| | | |
| * | | Added the type of .balanceDenton Liu2016-05-311-1/+1
| | | |
| * | | Sorted block attributes alphabeticallyDenton Liu2016-05-312-2/+2
| | | |
| * | | Made it apparent that block.blockhash is functionDenton Liu2016-05-312-2/+2
| | | |
| * | | Corrected underline lengthDenton Liu2016-05-311-1/+1
| | | |
| * | | Corrected capitalisation on index.rstDenton Liu2016-05-311-5/+5
| |/ /
* | | Up-to-date build instructions for Ubuntu 14.04Giacomo Tazzari2016-06-051-3/+25
| | |
* | | I forgot to finish typing a paragraphGiacomo Tazzari2016-06-051-1/+1
| | |
* | | Instructions to build Solidity on Ubuntu 16.04Giacomo Tazzari2016-06-051-39/+25
|/ / | | | | | | Minimal dependencies for Solidity on Ubuntu 16.04, removed those for older Ubuntu versions for now (they were a bit confusing). Removed --all and added -DETHASHCL=0 to ethbuild.sh when building Solidity only.
* | Added a section about .send() returning falseDenton Liu2016-05-301-0/+3
| |
* | Added @Arachnid's string libraryDenton Liu2016-05-301-1/+1
| |
* | Removed inline code formatting for one titleDenton Liu2016-05-301-2/+2
| |
* | Corrected underline lengthsDenton Liu2016-05-301-30/+30
| |
* | Changed inline code syntaxDenton Liu2016-05-3012-456/+456
| | | | | | | | Changed from :code:`<inline>` to ``<inline>``
* | Modified units-and-global-variables.rstDenton Liu2016-05-301-39/+39
| | | | | | | | Corrected syntax for inline code
* | Modified types.rstDenton Liu2016-05-301-83/+83
| | | | | | | | Corrected inline code syntax
* | Modified style-guide.rstDenton Liu2016-05-301-4/+4
| | | | | | | | Corrected inline code syntax
* | Corrected solidity-by-example.rstDenton Liu2016-05-301-1/+1
| | | | | | | | Fixed inline code syntax
* | Modified miscellaneous.rstDenton Liu2016-05-301-59/+61
| | | | | | | | Corrected inline code syntax
* | Modified layout-of-source-files.rstDenton Liu2016-05-301-19/+19
| | | | | | | | Corrected inline code syntax
* | Modified introduction-to-smart-contracts.rstDenton Liu2016-05-301-25/+25
| | | | | | | | Corrected inline code syntax
* | Modified installing-solidity.rstDenton Liu2016-05-301-3/+3
| | | | | | | | Corrected inline code syntax
* | Fixed whitespacing issuesDenton Liu2016-05-301-10/+10
| |
* | Corrected FAQ titlesDenton Liu2016-05-301-66/+66
| |
* | Modified frequently-asked-questions.rstDenton Liu2016-05-301-78/+78
| | | | | | | | Changed inline code syntax
* | Modified control-structures.rstDenton Liu2016-05-301-46/+46
| | | | | | | | Changed inline code syntax
* | Modified contracts.rstDenton Liu2016-05-301-60/+60
| | | | | | | | Changed inline code syntax
* | Modified common-patterns.rstDenton Liu2016-05-301-4/+4
| | | | | | | | Now it uses proper inline code syntax
* | Added Atom Solidity Linter to DocsJacob Payne2016-05-281-1/+4
| |
* | Merge pull request #601 from mathvdh/patch-1chriseth2016-05-271-1/+1
|\ \ | | | | | | Typo correction in solidity-by-example.rst
| * | Typo correction in solidity-by-example.rstMathieu Van der Haegen2016-05-261-1/+1
| | | | | | | | | Just correcting a simple typo in the comments of the code
* | | Use original vim-solidity repositorychriseth2016-05-271-1/+1
| | |
* | | Add vim and emacs plugins.chriseth2016-05-261-2/+8
|/ /
* | Fixed errors introduced by previous commitDenton Liu2016-05-241-1/+2
| | | | | | | | #565 introduced some errors in the documentation
* | Update links to browser-solidity.chriseth2016-05-205-17/+9
| |
* | Merge pull request #578 from winsvega/developchriseth2016-05-201-2/+24
|\ \ | | | | | | More Solidity IDE links
| * | More links to solidity implementationsDimitry2016-05-201-2/+24
| | |
* | | Merge pull request #565 from VoR0220/fixedDataTypechriseth2016-05-201-8/+48
|\ \ \ | | | | | | | | Fixed data typename fixes and documentation
| * | | updated docsVoR02202016-05-191-8/+48
| | | | | | | | | | | | | | | | | | | | | | | | types reference
* | | | Typo fixDave Hoover2016-05-201-1/+1
| | | |
* | | | Corrected capitalisationDenton Liu2016-05-201-3/+3
| | | |
* | | | Changed link to point to solc-js repoDenton Liu2016-05-201-1/+1
| | | |
* | | | Corrected typoDenton Liu2016-05-191-1/+1
| | | |
* | | | Changed link from markdown to rstDenton Liu2016-05-193-4/+6
| | | | | | | | | | | | | | | | Added labels for the links to point to
* | | | Corrected capitalisation of symbol namesDenton Liu2016-05-194-21/+22
| | | |
* | | | Corrected documentation for ecrecoverDenton Liu2016-05-192-3/+3
| | | |
* | | | Corrected "who's" to "whose"Denton Liu2016-05-191-2/+2
| | | |
* | | | Changed do_something to doSomethingDenton Liu2016-05-191-9/+9
|/ / / | | | | | | | | | This is in accordance to the style guide
* | | Corrected errors.chriseth2016-05-193-2/+4
| | |
* | | Fixed a badly resolved merge conflictDenton Liu2016-05-191-3/+3
| | |
* | | Changed whitespace formattingDenton Liu2016-05-189-186/+219
| | |
* | | Added space to example codeDenton Liu2016-05-181-0/+4
| | |
* | | Removed trailing whitespaceDenton Liu2016-05-186-37/+37
| | |
* | | Added an extra necessary linebreakDenton Liu2016-05-181-0/+1
| | |
* | | Removed trailing whitespaceDenton Liu2016-05-182-7/+7
| | |
* | | Fixed table formattingDenton Liu2016-05-181-141/+141
| | |
* | | Replaced tabs with spacesDenton Liu2016-05-181-97/+97
| | |
* | | Increased clarity of assembly statementDenton Liu2016-05-181-2/+5
| | |
* | | Corrected spacing to four spacesDenton Liu2016-05-181-38/+40
| | |
* | | Removed trailing spaceDenton Liu2016-05-181-1/+1
| | |
* | | Replaced all tabs with spacesDenton Liu2016-05-181-50/+50
| | |