-
Notifications
You must be signed in to change notification settings - Fork 38.7k
Improving wording related to Boost library requirements #7589
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Documentation was unclear in this section and could be interpreted to mean that boost was not a hard requirement for older Ubuntu versions. Related: #7587
doc/build-unix.md
Outdated
| install necessary parts of boost: | ||
|
|
||
| sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev | ||
| `sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: IMO if you use a 4-spaces-indent that's equivalent to `
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, either do
install necessary parts of boost:
```bash
<commands go here>
```
Or indent four spaces:
install necessary parts of boost:
<commands go here>
Both is not valid markdown.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you both.
The Ordered list (numbers 1 and 2) formatting cause markdown to ignore the 4-space "code" indentation markup. I did some experimentation and now see that I need to indent 8 spaces to bring back the code formatting when in a list.
Now fixed.
|
ACK 417e64b |
Merging in latest changes.
Documentation was unclear in this section and could be interpreted to mean that boost was not a hard requirement for older Ubuntu versions. Related: #7587 This squashed commit replaces backticks with additional 4-space code indentation.
|
I went ahead and created a new clean pull request #7590 with a single commit and the formatting changes requested. |
Documentation was unclear in this section and could be interpreted to mean that boost was not a hard requirement for older Ubuntu versions.
Related: #7587