File tree 1 file changed +13
-13
lines changed 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -217,25 +217,25 @@ See [Configurations.md](Configurations.md) for details.
217
217
* If you get an error like `error while loading shared libraries` while starting
218
218
up rustfmt you should try the following :
219
219
220
- On Linux :
220
+ On Linux :
221
221
222
- ` ` `
223
- export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
224
- ` ` `
222
+ ```
223
+ export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
224
+ ```
225
225
226
- On MacOS :
226
+ On MacOS:
227
227
228
- ` ` `
229
- export DYLD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$DYLD_LIBRARY_PATH
230
- ` ` `
228
+ ```
229
+ export DYLD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$DYLD_LIBRARY_PATH
230
+ ```
231
231
232
- On Windows (Git Bash/Mingw) :
232
+ On Windows (Git Bash/Mingw):
233
233
234
- ` ` `
235
- export PATH=$(rustc --print sysroot)/lib/rustlib/x86_64-pc-windows-gnu/lib/:$PATH
236
- ` ` `
234
+ ```
235
+ export PATH=$(rustc --print sysroot)/lib/rustlib/x86_64-pc-windows-gnu/lib/:$PATH
236
+ ```
237
237
238
- (Substitute `x86_64` by `i686` and `gnu` by `msvc` depending on which version of rustc was used to install rustfmt).
238
+ (Substitute `x86_64` by `i686` and `gnu` by `msvc` depending on which version of rustc was used to install rustfmt).
239
239
240
240
## License
241
241
You can’t perform that action at this time.
0 commit comments