Fix link to FAQ sections (#3642)

* Fix link to FAQ sections

Use consistently the same host and url and fix one unmatched anchor.

* Update HISTORY.rst

Co-authored-by: Ivan Kravets <me@ikravets.com>
This commit is contained in:
Dirk Mueller
2020-09-02 18:13:20 +02:00
committed by GitHub
parent 6e5198f373
commit c8ea64edab
2 changed files with 5 additions and 5 deletions

View File

@ -55,8 +55,8 @@ class InvalidUdevRules(PlatformioException):
class MissedUdevRules(InvalidUdevRules):
MESSAGE = (
"Warning! Please install `99-platformio-udev.rules`. \nMode details: "
"https://docs.platformio.org/en/latest/faq.html#platformio-udev-rules"
"Warning! Please install `99-platformio-udev.rules`. \nMore details: "
"https://docs.platformio.org/page/faq.html#platformio-udev-rules"
)
@ -64,8 +64,8 @@ class OutdatedUdevRules(InvalidUdevRules):
MESSAGE = (
"Warning! Your `{0}` are outdated. Please update or reinstall them."
"\n Mode details: https://docs.platformio.org"
"/en/latest/faq.html#platformio-udev-rules"
"\nMore details: "
"https://docs.platformio.org/page/faq.html#platformio-udev-rules"
)