Skip to content

Commit 2b5841f

Browse files
[STYLE] Documentation style fixes for the FAQ updates (- WIP PR #429 -)
Changes in file docs/FAQ.md: * style fixes
1 parent 808908c commit 2b5841f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/FAQ.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ can then proceed to implement a more advanced solution in Python as necessary.
4848
python3 -m multicast --daemon --use-std HEAR --port 59595 --group 224.0.0.1
4949
```
5050

51-
**Explanation of the Command-Line Options** <!-- Not a header due to repeated usage -->
51+
* **Explanation of the Command-Line Options** <!-- Not a header due to repeated usage -->
5252

5353
| Option | Description |
5454
|--------|-------------|
@@ -58,7 +58,7 @@ python3 -m multicast --daemon --use-std HEAR --port 59595 --group 224.0.0.1
5858
| `--port 59595` | This sets the UDP port number to `59595`, which is used to identify/filter the multicast messages that will be accepted. |
5959
| `--group 224.0.0.1` | This specifies the multicast group address to join. You can replace `224.0.0.1` with your desired multicast group address. |
6060

61-
**Steps to Run** <!-- Not a header due to repeated usage -->
61+
* **Steps to Run** <!-- Not a header due to repeated usage -->
6262

6363
1. Open your terminal.
6464
2. Ensure you have the multicast module installed and accessible.
@@ -110,7 +110,7 @@ sender(group='224.0.0.1', port=59595, ttl=1, data='Hello, Multicast!')
110110
python3 -m multicast SAY --group 224.0.0.1 --port 59595 --message "Hello World!"
111111
```
112112

113-
**Explanation of the Command-Line Options** <!-- Not a header due to repeated usage -->
113+
* **Explanation of the Command-Line Options** <!-- Not a header due to repeated usage -->
114114

115115
| Option | Description |
116116
|--------|-------------|
@@ -120,7 +120,7 @@ python3 -m multicast SAY --group 224.0.0.1 --port 59595 --message "Hello World!"
120120
| `--message` | This specifies the rest of the input is to be the message to transmit. |
121121
| `"Hello World!"` | This specifies the multicast message content to _transmit_. In this case, it is the greeting "Hello World!" |
122122

123-
**Steps to Run** <!-- Not a header due to repeated usage -->
123+
* **Steps to Run** <!-- Not a header due to repeated usage -->
124124

125125
1. Open your terminal.
126126
2. Ensure you have the multicast module installed and accessible.

0 commit comments

Comments
 (0)