Skip to content

Commit

Permalink
Merge pull request #64 from DrGFreeman/63-tuple-docs-values-mismatch
Browse files Browse the repository at this point in the history
Fix mismatch between env value and resulting tuple
  • Loading branch information
nkantar authored Feb 25, 2021
2 parents 4e83fd2 + 35ad75d commit 2964f23
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Security - in case of vulnerabilities

## [Unreleased]

### Fixed
- Mismatch between env value and resulting tuple in docs (issue #63, PR #64).


## [3.0.2] - 2021-02-22

Expand Down
4 changes: 2 additions & 2 deletions docs/source/tuple.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Usage

.. code-block:: shell
export ALLOWED_CATEGORIES=python,vim,git
export SAMPLE_GREETING=Hello,world!
.. code-block:: python
>>> import parsenvy
>>> parsenvy.tuple('ALLOWED_CATEGORIES')
>>> parsenvy.tuple('SAMPLE_GREETING')
('Hello', 'world!')

0 comments on commit 2964f23

Please sign in to comment.