Skip to content

Commit 3bf7293

Browse files
committed
Documentation fixes
1. docs/setup/enable-logging.md - Fix the json content formatting. 2. docs/setup/clone-the-repositories.md - Add links to the Github repositories - Update the section on relative-imports now that this has been merged into develop.
1 parent f730a33 commit 3bf7293

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/setup/clone-the-repositories.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
We'll need to clone two repositories.
44

5-
- ndfc-python
6-
- ansible-dcnm
5+
- [ndfc-python](https://github.com/allenrobel/ndfc-python)
6+
- [ansible-dcnm](https://github.com/CiscoDevNet/ansible-dcnm/tree/main)
77

88
It's recommended to clone the repositories side-by-side in the directory where you keep your repositories. We'll use `$HOME/repos` in our examples.
99

@@ -21,9 +21,9 @@ cd $HOME/repos
2121
git clone https://github.com/CiscoDevNet/ansible-dcnm.git
2222
```
2323

24-
Until relative-imports are integrated into the `ansible-dcnm` repository, you'll need to switch branches.
24+
Until relative-imports are integrated into the `ansible-dcnm` repository, you'll need to switch branches to the `develop` branch (if the branch isn't currently set to `develop`).
2525

2626
```bash
2727
cd $HOME/repos/ansible-dcnm
28-
git switch relative-imports
28+
git switch develop
2929
```

docs/setup/enable-logging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export NDFC_LOGGING_CONFIG=$HOME/repos/ndfc-python/lib/ndfc_python/logging_confi
88

99
`NDFC_LOGGING_CONFIG` should point to a standard Pyton logging configuration file. There is an example file in this repository at ``lib/ndfc_python/logging_config.json``. Below is the contents.
1010

11-
``` json "Example logging configuration file"
11+
``` json title="Example logging configuration file"
1212
{
1313
"version": 1,
1414
"formatters": {

0 commit comments

Comments
 (0)