diff options
author | Ciro Santilli 六四事件 法轮功 包卓轩 <ciro.santilli@gmail.com> | 2016-06-14 19:29:15 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2016-06-14 19:29:15 +0200 |
commit | 3745664656615595463e628dbee5ed77d38f7a08 (patch) | |
tree | 915de5d8d6c91f0c879d5eda07d344a0ff9cdedb /doc | |
parent | 1069e08700b122daa9302f3e715a586a07d80156 (diff) | |
download | ghdl-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.rst | 2 |
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. |