aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorCiro Santilli 六四事件 法轮功 包卓轩 <ciro.santilli@gmail.com>2016-06-14 19:29:15 +0200
committertgingold <tgingold@users.noreply.github.com>2016-06-14 19:29:15 +0200
commit3745664656615595463e628dbee5ed77d38f7a08 (patch)
tree915de5d8d6c91f0c879d5eda07d344a0ff9cdedb /doc
parent1069e08700b122daa9302f3e715a586a07d80156 (diff)
downloadghdl-3745664656615595463e628dbee5ed77d38f7a08.tar.gz
ghdl-3745664656615595463e628dbee5ed77d38f7a08.tar.bz2
ghdl-3745664656615595463e628dbee5ed77d38f7a08.zip
Typo carray -> carry in full adder example (#77)
Diffstat (limited to 'doc')
-rw-r--r--doc/Starting_with_GHDL.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Starting_with_GHDL.rst b/doc/Starting_with_GHDL.rst
index d046e9aca..bba4b7b7a 100644
--- a/doc/Starting_with_GHDL.rst
+++ b/doc/Starting_with_GHDL.rst
@@ -171,7 +171,7 @@ the adder:
assert s = patterns(i).s
report "bad sum value" severity error;
assert co = patterns(i).co
- report "bad carray out value" severity error;
+ report "bad carry out value" severity error;
end loop;
assert false report "end of test" severity note;
-- Wait forever; this will finish the simulation.