Skip to content

Commit 862ae47

Browse files
pilosustheskumar
authored andcommitted
README.rst minor syntax/typo fixes (theskumar#43)
1 parent 8184a89 commit 862ae47

1 file changed

Lines changed: 16 additions & 15 deletions

File tree

README.rst

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
python-dotenv | |Build Status| |Coverage Status| |PyPI version| |PyPI|
12-
=================================
12+
======================================================================
1313

1414
Reads the key,value pair from ``.env`` and adds them to environment
1515
variable. It is great of managing app settings during development and in
@@ -21,8 +21,8 @@ production using `12-factor <http://12factor.net/>`__ principles.
2121
- `Installation <#installation>`__
2222
- `Command-line interface <#command-line-interface>`__
2323
- `iPython Support <#ipython-support>`__
24-
- `Setting config on remote
25-
- `Releated Projects <#releated-projects>`__
24+
- `Setting config on remote servers <#setting-config-on-remote-servers>`__
25+
- `Related Projects <#releated-projects>`__
2626
- `Contributing <#contributing>`__
2727
- `Changelog <#changelog>`__
2828

@@ -138,17 +138,18 @@ update your settings on remote server, handy isn't it!
138138
iPython Support
139139
---------------
140140

141-
You can use dotenv with iPython. You can either let the dotenv search for .env with `%dotenv` or provide the path to .env file explicitly, see below for usuages.
141+
You can use dotenv with iPython. You can either let the dotenv search for .env with `%dotenv` or provide the path to .env file explicitly, see below for usages.
142142

143-
```
144-
%load_ext dotenv
143+
::
144+
145+
%load_ext dotenv
146+
147+
# Use find_dotenv to locate the file
148+
%dotenv
145149

146-
# Use find_dotenv to locate the file
147-
%dotenv
150+
# Specify a particular file
151+
%dotenv relative/or/absolute/path/to/.env
148152

149-
# Specify a particular file
150-
%dotenv relative/or/absolute/path/to/.env
151-
```
152153

153154
Setting config on remote servers
154155
--------------------------------
@@ -245,23 +246,23 @@ Changelog
245246
=========
246247

247248
dev
248-
----------
249+
----
249250
- Fix `dotenv list` command (`@ticosax`_)
250251
- Add iPython Suport (`@tillahoffmann`_)
251252

252253
0.6.0
253-
----------
254+
-----
254255
- Drop support for Python 2.6
255256
- Handle escaped charaters and newlines in quoted values. (Thanks `@iameugenejo`_)
256257
- Remove any spaces around unquoted key/value. (Thanks `@paulochf`_)
257258
- Added POSIX variable expansion. (Thanks `@hugochinchilla`_)
258259

259260
0.5.1
260-
----------
261+
-----
261262
- Fix `find_dotenv` - it now start search from the file where this function is called from.
262263

263264
0.5.0
264-
----------
265+
-----
265266
- Add ``find_dotenv`` method that will try to find a ``.env`` file. (Thanks `@isms`_)
266267

267268
0.4.0

0 commit comments

Comments
 (0)