Skip to content

Commit 7ecdcc5

Browse files
authored
Fix bullet list formatting in Logging docs. (#39469)
1 parent aad4fec commit 7ecdcc5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

stdlib/Logging/docs/src/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ automatically extracted. Let's examine the user-defined data first:
6060
user-defined levels are also possible.
6161
Each is distinct in purpose:
6262
- `Debug` is information intended for the developer of the program.
63-
These events are disabled by default.
63+
These events are disabled by default.
6464
- `Info` is for general information to the user.
65-
Think of it as an alternative to using `println` directly.
65+
Think of it as an alternative to using `println` directly.
6666
- `Warn` means something is wrong and action is likely required
67-
but that for now the program is still working.
67+
but that for now the program is still working.
6868
- `Error` means something is wrong and it is unlikely to be recovered,
69-
at least by this part of the code.
70-
Often this log-level is unneeded as throwing an exception can convey
71-
all the required information.
69+
at least by this part of the code.
70+
Often this log-level is unneeded as throwing an exception can convey
71+
all the required information.
7272

7373
* The *message* is an object describing the event. By convention
7474
`AbstractString`s passed as messages are assumed to be in markdown format.

0 commit comments

Comments
 (0)