Style fixes for folly/experimental/gdb/README.md
authorYedidya Feldblum <yfeldblum@fb.com>
Fri, 13 Oct 2017 23:14:37 +0000 (16:14 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Fri, 13 Oct 2017 23:29:14 +0000 (16:29 -0700)
Summary:
[Folly] Style fixes for `folly/experimental/gdb/README.md`.

Should have no effect on Github rendering, but should affect PHabricator rendering.

Reviewed By: Orvid, kennyyu

Differential Revision: D6055017

fbshipit-source-id: 54204a2b77beeb884cdc486207809f78ac80afe2

folly/experimental/gdb/README.md

index 91a05a5d9de47fa9bdaae83c04fff67564a09519..d4bc1345edcfb399d758d42b5296f06df4c92cfc 100644 (file)
@@ -8,7 +8,7 @@ These scripts use the [gdb extension Python API](https://sourceware.org/gdb/curr
 
 To run the scripts, fire up `gdb` and load a script with `source -v`. Example:
 
-```bash
+```lang=bash
 $ gdb -p 123456
 (gdb) source -v ./folly/experimental/gdb/deadlock.py
 Type "deadlock" to detect deadlocks.
@@ -24,7 +24,7 @@ Found deadlock!
 
 Consider the following program that always deadlocks:
 
-```cpp
+```lang=cpp
 void deadlock3() {
   std::mutex m1, m2, m3;
   folly::Baton<> b1, b2, b3;
@@ -59,7 +59,7 @@ void deadlock3() {
 The `deadlock.py` script introduces a new `deadlock` command that can help
 us identify the threads and mutexes involved with the deadlock.
 
-```bash
+```lang=bash
 $ gdb -p 2174496
 (gdb) source -v ./folly/experimental/gdb/deadlock.py
 Type "deadlock" to detect deadlocks.