summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2019-08-08 23:14:39 +0530
committerGitHub <noreply@github.com>2019-08-08 23:14:39 +0530
commit745a2ce9a007fd447a29dee6d99a01f4ef9a9d49 (patch)
tree003f99688d81892c28390b7b5a96010d2cc929d5
parentfd050df838968889ccc13a65c0ce8bad60cb00bc (diff)
parent4132daa9e5eacab90eedbc63a203b9d21ca7ae5c (diff)
Merge pull request #3596 from Aldaschwede/master
[solidity/en] added qualifier payable hence it's not compilable, [python/de] correction
-rw-r--r--de-de/python3-de.html.markdown2
-rw-r--r--solidity.html.markdown2
2 files changed, 2 insertions, 2 deletions
diff --git a/de-de/python3-de.html.markdown b/de-de/python3-de.html.markdown
index c383d742..4ef997a1 100644
--- a/de-de/python3-de.html.markdown
+++ b/de-de/python3-de.html.markdown
@@ -14,7 +14,7 @@ Python wurde in den frühen Neunzigern von Guido van Rossum entworfen. Es ist he
Feedback ist herzlich willkommen! Ihr erreicht mich unter [@louiedinh](http://twitter.com/louiedinh) oder louiedinh [at] [google's email service].
-Hinweis: Dieser Beitrag bezieht sich insplizit auf Python 3. Falls du lieber Python 2.7 lernen möchtest, schau [hier](http://learnxinyminutes.com/docs/python/) weiter.
+Hinweis: Dieser Beitrag bezieht sich implizit auf Python 3. Falls du lieber Python 2.7 lernen möchtest, schau [hier](http://learnxinyminutes.com/docs/python/) weiter.
```python
diff --git a/solidity.html.markdown b/solidity.html.markdown
index d215180d..cc719ec7 100644
--- a/solidity.html.markdown
+++ b/solidity.html.markdown
@@ -483,7 +483,7 @@ for(uint x = 0; x < refundAddressList.length; x++) {
// A. Calling external contract
contract InfoFeed {
- function info() returns (uint ret) { return 42; }
+ function info() payable returns (uint ret) { return 42; }
}
contract Consumer {