Skip to content

Commit 8f17822

Browse files
committed
sdc_expand, opensta: typos
1 parent 8179ba1 commit 8f17822

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

techlibs/common/opensta.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ struct OpenstaPass : public Pass
109109
};
110110
int ret = run_command(command, process_line);
111111
if (ret)
112-
log_error("OpenSTA return %d (error)\n", ret);
112+
log_error("OpenSTA returned %d (error)\n", ret);
113113
else
114114
log("sdc_expanded_filename: %s\n", sdc_expanded_filename.c_str());
115115

techlibs/common/sdc_expand.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
USING_YOSYS_NAMESPACE
55
PRIVATE_NAMESPACE_BEGIN
66

7-
struct SdcexpandPass : public ScriptPass
7+
struct SdcExpandPass : public ScriptPass
88
{
99
const char* default_sta_cmd = "sta";
10-
SdcexpandPass() : ScriptPass("sdc_expand", "run OpenSTA") { }
10+
SdcExpandPass() : ScriptPass("sdc_expand", "run OpenSTA") { }
1111

1212
void help() override
1313
{
@@ -145,6 +145,6 @@ struct SdcexpandPass : public ScriptPass
145145
}
146146
run("design -load pre_expand");
147147
}
148-
} SdcexpandPass;
148+
} SdcExpandPass;
149149

150150
PRIVATE_NAMESPACE_END

0 commit comments

Comments
 (0)