aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2020-07-16 09:48:10 +0000
committerGitHub <noreply@github.com>2020-07-16 09:48:10 +0000
commita87e338381507b372bb4ad6fad6ad959e0139649 (patch)
treef80e071d849033d1b9e7b90e1e287d7a283c4211
parentcb757b28b4078d19a31361b1f57f5f32595c4523 (diff)
parenta5cf000377269fff41dfd6410fb113fd89373689 (diff)
downloadyosys-a87e338381507b372bb4ad6fad6ad959e0139649.tar.gz
yosys-a87e338381507b372bb4ad6fad6ad959e0139649.tar.bz2
yosys-a87e338381507b372bb4ad6fad6ad959e0139649.zip
Merge pull request #2270 from whitequark/cxxrtl-fix-typo
cxxrtl: fix typo
-rw-r--r--backends/cxxrtl/cxxrtl_capi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/cxxrtl/cxxrtl_capi.h b/backends/cxxrtl/cxxrtl_capi.h
index 74257f0da..1f1942803 100644
--- a/backends/cxxrtl/cxxrtl_capi.h
+++ b/backends/cxxrtl/cxxrtl_capi.h
@@ -64,7 +64,7 @@ int cxxrtl_eval(cxxrtl_handle handle);
// Commit the design, replacing the `curr` value of internal state and output wires with the `next`
// value.
//
-// Return 1 if any of the `curr` values, 0 otherwise.
+// Return 1 if any of the `curr` values were updated, 0 otherwise.
int cxxrtl_commit(cxxrtl_handle handle);
// Simulate the design to a fixed point.