1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-11-22 11:04:25 +01:00

Update CONTRIBUTING.md

This commit is contained in:
Satwik Kansal 2017-08-31 19:13:00 +05:30 committed by GitHub
parent 1c838ad896
commit 310ba05449

View File

@ -1,27 +1,27 @@
All patches are welcome. If you're ading a new example, please do create an issue before submitting a patch. All patches are welcome. If you're ading a new example, please do create an issue before submitting a patch.
dcd
You can use the following template for adding a new example: You can use the following template for adding a new example:
<pre>
### Some fancy Title
```py
# Setting up the code.
# Preparation for the magic...
``` ```
### Some fancy Title
```py **Output (Python version):**
# Setting up the code. ```py
# Preparation for the magic... >>> triggering_statement
``` Probably unexpected output
```
(Optional): One line describing the unexpected output.
**Output (Python version):** **Note:** All the examples mentioned below are run on Python 3.5.2 interactive interpreter unless explicitly specified.
```py
>>> triggering_statement
Probably unexpected output
```
(Optional): One line describing the unexpected output.
**Note:** All the examples mentioned below are run on Python 3.5.2 interactive interpreter unless explicitly specified.
#### 💡 Explanation: #### 💡 Explanation:
* Brief explanation of what's happening and why is it happening. * Brief explanation of what's happening and why is it happening.
```py ```py
Setting up examples for clarification (if necessary) Setting up examples for clarification (if necessary)
``` ```
@ -31,3 +31,4 @@ You can use the following template for adding a new example:
# some justified output # some justified output
``` ```
``` ```
</pre>