Skip to content

Commit c00025b

Browse files
committed
Update docs
1 parent 61b4bd2 commit c00025b

34 files changed

+62
-43
lines changed

docs/build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 9b07121e63ddd90cc22730ef5713343e
3+
config: 314653eb7768aad1c4a602c6f82af56c
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
-437 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-2 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.
626 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.

docs/build/html/_sources/items.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Set or add new an option
88

99
.. code:: python
1010
11-
section1 = config.add_section('section1', inline_text=' # this is comment')
11+
section1 = config.add_section('section1', text_after=' # this is comment')
1212
1313
section1['option1'] = 'value1'
1414
section1['option_without_value'] = None

docs/build/html/_sources/loadconfig.rst.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ You can load configuration from file:
99
1010
from configrw import Config
1111
12-
config = Config().from_file('./path/to/file')
12+
13+
config = Config.from_file('./path/to/file')
1314
1415
or load config from string:
1516

1617
.. code:: python
1718
18-
config = Config().from_str("""
19+
config = Config.from_str("""
1920
[section1]
2021
option1 = 100
2122
option2 = 200

0 commit comments

Comments
 (0)