diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-09-06 10:15:47 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-09-06 10:15:47 +0200 |
commit | 652345c9cd41a6a93925477e44a6d7925b0d7584 (patch) | |
tree | b546123251d39df2ffd115fb0b8a08e57e7cf538 /manual/CHAPTER_Prog/stubnets.cc | |
parent | 01ef34c147dd3e3e3d13864f9c726727a4013207 (diff) | |
parent | 79cbf9067c07ed810b3466174278d77b9a05b46d (diff) | |
download | yosys-652345c9cd41a6a93925477e44a6d7925b0d7584.tar.gz yosys-652345c9cd41a6a93925477e44a6d7925b0d7584.tar.bz2 yosys-652345c9cd41a6a93925477e44a6d7925b0d7584.zip |
Merge pull request #38 from rubund/master
Corrected spelling mistakes found by lintian
Diffstat (limited to 'manual/CHAPTER_Prog/stubnets.cc')
-rw-r--r-- | manual/CHAPTER_Prog/stubnets.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/CHAPTER_Prog/stubnets.cc b/manual/CHAPTER_Prog/stubnets.cc index 4d1452c97..ef4b1245d 100644 --- a/manual/CHAPTER_Prog/stubnets.cc +++ b/manual/CHAPTER_Prog/stubnets.cc @@ -57,7 +57,7 @@ static void find_stub_nets(RTLIL::Design *design, RTLIL::Module *module, bool re // we will record which bits of the (possibly multi-bit) wire are stub signals std::set<int> stub_bits; - // get a signal description for this wire and split it into seperate bits + // get a signal description for this wire and split it into separate bits RTLIL::SigSpec sig = sigmap(wire); // for each bit (unless it is a constant): |