Skip to content

Commit e16130d

Browse files
authored
Changed code indents from tabs to spaces
1 parent e079308 commit e16130d

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

doc/classes.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,18 @@
55
#### PHP
66
```php
77
<?php
8-
class myClass {
9-
public $foo = 1
10-
8+
class myClass {
9+
public $foo = 1
1110
public function returnFoo() {
12-
echo $this->foo;
11+
echo $this->foo;
1312
}
1413
}
1514
?>
1615
```
1716
#### Python
1817
```python
1918
class myClass:
20-
foo = 1
21-
19+
foo = 1
2220
def returnFoo(self):
2321
return self.foo
2422

0 commit comments

Comments
 (0)