update documentation

This commit is contained in:
cclecle
2023-04-01 01:19:22 +01:00
parent 34f6f5f3f8
commit ca514d5358
4 changed files with 8 additions and 11 deletions

View File

@@ -10,9 +10,6 @@
# pySimpleINI
_A simple ini parser / factory_
_A simple but powerfull ini parser / factory_
Checkout [Latest Documentation](https://chacha.ddns.net/mkdocs-web/chacha/pysimpleini/master/latest/).
## Features
## Options
Checkout [Latest Documentation](https://chacha.ddns.net/mkdocs-web/chacha/pysimpleini/master/latest/).

View File

@@ -193,7 +193,7 @@ myini.filepath = "somedir/somefile.ini"
myini.writefile()
```
__Read the API documentation and the unit test for more informations __
__Read the API documentation and the unit test for more informations.__
## limitations

View File

@@ -60,12 +60,12 @@ class SectionBase(metaclass=ABCMeta):
"""Output the full formated Section's.
Example:
'''
```console
[Section Name]
Key1Name = Key1Value
Key2Name = Key2Value
...
'''
```
Args:
bBeautify: enable space around '='
@@ -153,12 +153,12 @@ class Section(SectionComment, SectionBlanck):
"""Output the full formated Section's.
Example:
'''
```
[Section Name]
Key1Name = Key1Value
Key2Name = Key2Value
...
'''
```
Args:
bBeautify: enable space around '='

View File

@@ -11,7 +11,7 @@
"""Main PySimpleINI module.
///note
Contain all the core code.
Contain the first level user accessible methods.
///
"""