1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-02 14:47:35 +02:00

fixed messed up markdown formatting

metaMMA
2017-08-05 03:55:20 -05:00
parent 45a8d71f8f
commit c0e559aed4

@@ -5,12 +5,12 @@ _**WORK IN PROGRESS: nothing described here should be considered as definitive o
Use two space characters for each indentation level
```PHP
if ( true ){
__echo true;
else{
__echo false;
}
```
if ( true ){
echo true;
} else{
echo false;
}
```
* Proposal 2
@@ -18,7 +18,7 @@ __echo false;
```PHP
if(true){
echo true;
} else {
} else{
echo false;
}
```
@@ -43,13 +43,13 @@ __echo false;
* Proposal 1
```PHP
var $thisVariable;
function thisFunction(){}
class thisClass {
function thisMethod(){}
}
```
```PHP
var $thisVariable;
function thisFunction(){}
class thisClass {
function thisMethod(){}
}
```
* Proposal 2
@@ -59,3 +59,4 @@ class thisClass {
class ThisClass { // UpperCamelCase (PascalCase)
function ThisMethod(){} // UpperCamelCase (PascalCase)
}
```