From bdda4779564534805b35b749c42c6aec844df9a6 Mon Sep 17 00:00:00 2001 From: David Alber Date: Sun, 31 Dec 2017 18:41:46 -0800 Subject: [PATCH] Aligning text with its bullet --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index eba24ccf3a7..51e5d055ce6 100644 --- a/README.md +++ b/README.md @@ -217,25 +217,25 @@ See [Configurations.md](Configurations.md) for details. * If you get an error like `error while loading shared libraries` while starting up rustfmt you should try the following: -On Linux: + On Linux: -``` -export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH -``` + ``` + export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH + ``` -On MacOS: + On MacOS: -``` -export DYLD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$DYLD_LIBRARY_PATH -``` + ``` + export DYLD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$DYLD_LIBRARY_PATH + ``` -On Windows (Git Bash/Mingw): + On Windows (Git Bash/Mingw): -``` -export PATH=$(rustc --print sysroot)/lib/rustlib/x86_64-pc-windows-gnu/lib/:$PATH -``` + ``` + export PATH=$(rustc --print sysroot)/lib/rustlib/x86_64-pc-windows-gnu/lib/:$PATH + ``` -(Substitute `x86_64` by `i686` and `gnu` by `msvc` depending on which version of rustc was used to install rustfmt). + (Substitute `x86_64` by `i686` and `gnu` by `msvc` depending on which version of rustc was used to install rustfmt). ## License