Skip to content

Commit 8687d76

Browse files
committed
fix typo in documentation
Fix copy & paste documentation error/typo.
1 parent 6b0cf49 commit 8687d76

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

docs/index.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ The main installation is as easy as any other pip package.
2121

2222
//// tab | pip
2323

24-
/// tab | ssh
24+
/// tab | https
2525

2626
```bash
27-
pip install -U "git+ssh://git@github.com/DLR-KI/md-multiline-table.git@main"
27+
pip install -U "git+https://github.com/DLR-KI/md-multiline-table.git@main"
2828
```
2929

3030
///
3131

32-
/// tab | https
32+
/// tab | ssh
3333

3434
```bash
35-
pip install -U "git+https://github.com/DLR-KI/md-multiline-table.git@main"
35+
pip install -U "git+ssh://git@github.com/DLR-KI/md-multiline-table.git@main"
3636
```
3737

3838
///
@@ -41,21 +41,21 @@ pip install -U "git+https://github.com/DLR-KI/md-multiline-table.git@main"
4141

4242
//// tab | pyproject.toml
4343

44-
/// tab | ssh
44+
/// tab | https
4545

4646
```toml
4747
dependencies = [
48-
"dlr-logging @ git+ssh://git@github.com/DLR-KI/md-multiline-table.git@main",
48+
"md-multiline-table @ git+https://github.com/DLR-KI/md-multiline-table.git@main",
4949
]
5050
```
5151

5252
///
5353

54-
/// tab | https
54+
/// tab | ssh
5555

5656
```toml
5757
dependencies = [
58-
"dlr-logging @ git+https://github.com/DLR-KI/md-multiline-table.git@main",
58+
"md-multiline-table @ git+ssh://git@github.com/DLR-KI/md-multiline-table.git@main",
5959
]
6060
```
6161

@@ -65,21 +65,21 @@ dependencies = [
6565

6666
//// tab | setup.py
6767

68-
/// tab | ssh
68+
/// tab | https
6969

7070
```python
7171
install_requires = [
72-
"dlr-logging @ git+ssh://git@github.com/DLR-KI/md-multiline-table.git@main",
72+
"md-multiline-table @ git+https://github.com/DLR-KI/md-multiline-table.git@main",
7373
]
7474
```
7575

7676
///
7777

78-
/// tab | https
78+
/// tab | ssh
7979

8080
```python
8181
install_requires = [
82-
"dlr-logging @ git+https://github.com/DLR-KI/md-multiline-table.git@main",
82+
"md-multiline-table @ git+ssh://git@github.com/DLR-KI/md-multiline-table.git@main",
8383
]
8484
```
8585

@@ -89,20 +89,20 @@ install_requires = [
8989

9090
//// tab | poetry
9191

92-
/// tab | ssh
92+
/// tab | https
9393

9494
```toml
9595
[tool.poetry.dependencies]
96-
dlr-logging = { git = "git+ssh://git@github.com/DLR-KI/md-multiline-table.git", branch = "main" }
96+
md-multiline-table = { git = "git+https://github.com/DLR-KI/md-multiline-table.git", branch = "main" }
9797
```
9898

9999
///
100100

101-
/// tab | https
101+
/// tab | ssh
102102

103103
```toml
104104
[tool.poetry.dependencies]
105-
dlr-logging = { git = "git+https://github.com/DLR-KI/md-multiline-table.git", branch = "main" }
105+
md-multiline-table = { git = "git+ssh://git@github.com/DLR-KI/md-multiline-table.git", branch = "main" }
106106
```
107107

108108
///

0 commit comments

Comments
 (0)