From 18ce25112d80a254683a1bb735a1791e79dc16d8 Mon Sep 17 00:00:00 2001 From: dsengupta0628 Date: Tue, 10 Feb 2026 16:53:30 +0000 Subject: [PATCH] Updated space in comments Signed-off-by: dsengupta0628 --- network/VerilogNamespace.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/network/VerilogNamespace.cc b/network/VerilogNamespace.cc index 3b0d12e2..13574fa2 100644 --- a/network/VerilogNamespace.cc +++ b/network/VerilogNamespace.cc @@ -77,7 +77,7 @@ portVerilogName(const char *sta_name) return staToVerilog2(sta_name); } -//Unescaping logic should follow reverse of verilogToSta logic +// Unescaping logic should follow reverse of verilogToSta logic static string staToVerilog(const char *sta_name) { @@ -92,8 +92,8 @@ staToVerilog(const char *sta_name) escaped = true; char next_ch = s[1]; if (next_ch == verilog_escape) { - //Only keep the character after "\" - //to remove the escape added by verilogToSta" + // Only keep the character after "\" + // to remove the escape added by verilogToSta" escaped_name += next_ch; s++; } @@ -113,8 +113,8 @@ staToVerilog(const char *sta_name) return string(sta_name); } -//Unescaping logic should follow reverse of verilogToSta logic -//For "\\" handling, this should be like staToVerilog +// Unescaping logic should follow reverse of verilogToSta logic +// For "\\" handling, this should be like staToVerilog static string staToVerilog2(const char *sta_name) {