Skip to content

Commit 831d2cb

Browse files
committed
Remove obsolete warning
1 parent 3bcb3ee commit 831d2cb

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

docs/developing-hardware/prelude.rst

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,6 @@ More generally, there is a ``Vec n a`` type which allows collections of
3838
arbitrary values to be used. These vectors are tagged with their length, to
3939
prevent out of bounds access at compile-time.
4040

41-
.. warning::
42-
The ``Vec n a`` type exports pattern synonyms for inserting at the left and
43-
right of a vector. The types of the ``Cons`` constructor and ``(:>)`` pattern
44-
are slightly different, and may behave differently in practice.
45-
46-
The ``Cons`` constructor has a more general type, allowing it to be used in
47-
some cases where the pattern cannot be used. However, this additional power
48-
comes at the cost of type inference. It is recommended that users use the
49-
``(:>)`` pattern by default, and only use ``Cons`` when necessary.
50-
5141
Synthesis Domains
5242
-----------------
5343

@@ -98,7 +88,7 @@ which can be used to define synchronous circuits. The first of these is
9888

9989
.. _`Mealy machine`: https://en.wikipedia.org/wiki/Mealy_machine
10090

101-
It is also possible to define a `Moore machine`_ using the ``moore`` function
91+
It is also possible to define a `Moore machine`_ using the ``moore`` function
10292
in the Clash prelude. This differs to the Mealy machine by providing output
10393
based on the previous state (as oppoesd to the newly calculated state), and is
10494
specified by
@@ -169,4 +159,3 @@ changed to work with undefined values. Currently these are
169159
library. This allows evaluating values to normal form in code when undefined
170160
may be present. ``NFData`` can still be used, but will bubble up exceptions
171161
if undefined is encountered.
172-

0 commit comments

Comments
 (0)