From 9309d1a91b2a7329c14f4da8f90e7d8b602488f0 Mon Sep 17 00:00:00 2001
From: Jack Firth <jackhfirth@gmail.com>
Date: Sat, 6 May 2017 18:52:26 -0700
Subject: [PATCH] Fix formatting issue in README.md

---
 README.md | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 328fb74..8320802 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,9 @@ Then, require one or several of the following modules:
 * `(print-full-scopes)` prints the long version of the scope information for
   the scopes used in preceeding calls to `+scopes`.
 
-    (require debug-scopes/named-scopes)
+```racket
+(require debug-scopes/named-scopes)
+```
 
 * (make-named-scope string-or-symbol) creates a scope similarly to
   `make-syntax-introducer`, but annotates it with a name. This is a hack which
@@ -34,9 +36,11 @@ Then, require one or several of the following modules:
   implementation, this returns a module scope instead of a macro scope like
   `make-syntax-introducer`.
 
-    (require debug-scopes/named-scopes/override)
+```racket
+(require debug-scopes/named-scopes/override)
+```
 
 * Overrides `define-syntax` and `syntax-local-introduce`. The overridden
   `syntax-local-introduce` works with the overridden `define-syntax` to flip a
   named scope instead of the usual macro scope. The use-site scope which may
-  be flipped by `syntax-local-introduce` is left unchanged.
\ No newline at end of file
+  be flipped by `syntax-local-introduce` is left unchanged.