Skip to content

Commit

Permalink
header name fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tauzahmd authored Jul 27, 2021
1 parent 81e2756 commit 7155655
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A collection of all snippets/boiler-plate usable in VS code (Currently working o
| Prefix | Description |
| ------------------- | -------------------------------------------|
| propertygetter | Python [property](#propertygetter) getter |
| propertysetter | Python [property](#propertygetter) getter and setter |
| propertysetter | Python [property](#propertysetter) getter and setter |
| classinit | Python [class](#classinit) with an `__init__()` |
| classreprstr | Python [class](#classreprstr) with `__str__()` and ` __repr__()` |
| classsequence | Python [class](#classsequence) with `__init__()`, `__getitem__()`, `__setitem__()`, `__delitem__()`, `__len__()`, and `insert()` |
Expand All @@ -34,7 +34,7 @@ def name(self):
return self._name
```

##### `propertygetter`
##### `propertysetter`
```python
@property
def name(self):
Expand Down

0 comments on commit 7155655

Please sign in to comment.