Merge a duplicate release note
[ghc-hetmet.git] / docs / users_guide / 6.14.1-notes.xml
index 5bb63d1..90f4954 100644 (file)
       <listitem>
         <para>
           The full Haskell <literal>import</literal> syntax can now been
-          used to bring modules into scope in GHCi.
+          used to bring modules into scope in GHCi, e.g.
         </para>
+<programlisting>
+Prelude> import Data.List as L
+Prelude Data.List> L.length "foo"
+3
+</programlisting>
       </listitem>
     </itemizedlist>
   </sect2>
@@ -321,7 +326,7 @@ import SpecConstr
 (.) f g = \x -> f (g x)
 </programlisting>
         <para>
-          will be inlined if only aplpied to 2 arguments.
+          will be inlined if only applied to 2 arguments.
         </para>
       </listitem>
 
@@ -446,17 +451,6 @@ import SpecConstr
     <itemizedlist>
       <listitem>
         <para>
-          GHCi now supports full import syntax, e.g.
-        </para>
-<programlisting>
-Prelude> import Data.List as L
-Prelude Data.List> L.length "foo"
-3
-</programlisting>
-      </listitem>
-
-      <listitem>
-        <para>
           GHCi now understands the layout of multiline-commands, so
           this now works:
         </para>