minor fixing on comment

This commit is contained in:
tangxifan 2019-08-25 16:35:49 -06:00
parent 706b7f3427
commit 14db2bf1a9
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ void print_verilog_module_definition(std::fstream& fp,
const std::string& module_name) {
check_file_handler(fp);
print_verilog_comment(fp, std::string("//----- Verilog module for " + module_name + " -----"));
print_verilog_comment(fp, std::string("----- Verilog module for " + module_name + " -----"));
fp << "module " << module_name << "(" << std::endl;
}