diff --git a/assignment/10-pair-Course_Registration_System.md b/assignment/10-pair-Course_Registration_System.md
index 5d9fe60e8bead902b76ac5c870388f0b6e7aa65e..2dceae169c5cae4110562dcff0ac0651351dcfa8 100644
--- a/assignment/10-pair-Course_Registration_System.md
+++ b/assignment/10-pair-Course_Registration_System.md
@@ -1,4 +1,4 @@
-# Car Rental System
+# Course Registration System
 
 -   Assignment Due: September 27, 2019 at 9:30am
 -   Peer Assessment Due: September 27, 2019 at 11:59pm
@@ -289,34 +289,31 @@ architecture.  These should be opaque layers.  See Kung pp148-150.
 -   Data display requirements:
 
     10.  When a student's data is displayed, it will be:
-
-        ```
-           Name: StudentName        Major: StudentMajor
-           Courses Completed:
-               Course1ID       Course2ID       Course3ID       Course4ID
-               Course5ID       Course6ID       Course7ID       Course8ID
-               ...
-           Registered Courses:
-               Course1ID       Course1information
-               Course2ID       Course2information
-               ...
-        ```
-<!-- Why isn't pandoc placing </code></pre> here? -->
-
-        Completed courses will only have their names shown. Registered
-        courses will be shown as described in the next requirement.
+    ```
+       Name: StudentName        Major: StudentMajor
+       Courses Completed:
+           Course1ID       Course2ID       Course3ID       Course4ID
+           Course5ID       Course6ID       Course7ID       Course8ID
+           ...
+       Registered Courses:
+           Course1ID       Course1information
+           Course2ID       Course2information
+           ...
+    ```
+    Completed courses will only have their names shown. Registered courses will
+    be shown as described in the next requirement.
 
     11. When a course's data is displayed, it will be in these forms:
 
         1.  Classroom course
-            ```
-            CourseID   CourseName   Semester   Section   Room   MeetingTime   NumberOfStudentsRegistered   NumberOfAvailableSeats
-            ```
+        ```
+        CourseID   CourseName   Semester   Section   Room   MeetingTime   NumberOfStudentsRegistered   NumberOfAvailableSeats
+        ```
 
         1.  Online course
-            ```
-            CourseID   CourseName   Semester   URL
-            ```
+        ```
+        CourseID   CourseName   Semester   URL
+        ```
 
         **Note**: Use the Template Pattern in the code to display course data.