diff --git a/casr-logbook.cabal b/casr-logbook.cabal
--- a/casr-logbook.cabal
+++ b/casr-logbook.cabal
@@ -1,5 +1,5 @@
 name:               casr-logbook
-version:            0.6.3
+version:            0.6.4
 license:            OtherLicense
 license-file:       LICENSE
 author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,7 @@
+0.6.4
+
+* Update to instruction for flight time report.
+
 0.6.3
 
 * Update to instruction for flight time report.
diff --git a/src/Data/Aviation/Casr/Logbook/Html/Html.hs b/src/Data/Aviation/Casr/Logbook/Html/Html.hs
--- a/src/Data/Aviation/Casr/Logbook/Html/Html.hs
+++ b/src/Data/Aviation/Casr/Logbook/Html/Html.hs
@@ -258,7 +258,10 @@
   in  do  span_ [class_ "instructionrating"] (toHtmlRaw (shortStringRating r))
           span_ [class_ "commandphrase"] " for "
           span_ [class_ "commandaviator"] $ htmlAviatorShort a
-          span_ [class_ "instructionlesson"] $ maybe mempty (\c -> toHtmlRaw (' ':c)) (view lesson l)
+          maybe mempty (\c ->
+              do  span_ [class_ "commandphrase"] " "
+                  span_ [class_ "instructionlesson"] (toHtmlRaw c)
+            ) (view lesson l)
 
 htmlCommand ::
   AircraftFlight
