Skip to content

Commit 0a4ad1b

Browse files
authored
Merge pull request #17 from erlete/update-readme
Fix usage typo
2 parents 7f10033 + 314f712 commit 0a4ad1b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Interactive canvas that allows you to draw 2D coordinates in a plane and output
88
## Installation
99

1010
```bash
11-
python -m pip install coordinate-canvas
11+
python -m pip install coordinate-canvas # Use dash instead of underscore!
1212
```
1313

1414
## Usage
1515

1616
You can display the help message by running the following command:
1717

1818
```bash
19-
python -m coordinate-canvas --help
19+
python -m coordinate_canvas --help # Use underscore instead of dash!
2020
```
2121

2222
Once the canvas has been opened, you will be able to click on any part of it and add a new coordinate. Lines can be switched using the numeric pad on the keyboard, as explained on the header of the window.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "coordinate-canvas"
7-
version = "1.5.0"
7+
version = "1.5.1"
88
description = "Matplotlib-based canvas that allows line drawing and coordinate retrieval"
99
readme = "README.md"
1010
license = { file = "LICENSE" }

0 commit comments

Comments
 (0)