diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-01-04 15:19:37 +0100 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2021-01-05 18:50:44 +0100 |
commit | ef5f93a9d726c7c68899beb276c0b7f3f446c196 (patch) | |
tree | ef90a9270c7f75ea854a3820fcc087e2dae88f06 /testsuite | |
parent | e60be77e4f3cbccf67761a3c169799ff59b7086f (diff) | |
download | ghdl-ef5f93a9d726c7c68899beb276c0b7f3f446c196.tar.gz ghdl-ef5f93a9d726c7c68899beb276c0b7f3f446c196.tar.bz2 ghdl-ef5f93a9d726c7c68899beb276c0b7f3f446c196.zip |
Fixed parameter reference.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/pyunit/libghdl/Initialize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/pyunit/libghdl/Initialize.py b/testsuite/pyunit/libghdl/Initialize.py index ccc157fd7..d6032b435 100644 --- a/testsuite/pyunit/libghdl/Initialize.py +++ b/testsuite/pyunit/libghdl/Initialize.py @@ -18,7 +18,7 @@ class Instantiate(TestCase): @staticmethod def getIdentifier(node): - """Return the Python string from node :param:`node` identifier""" + """Return the Python string from node :obj:`node` identifier""" return name_table.Get_Name_Ptr(nodes.Get_Identifier(node)).decode("utf-8") def test_InitializeGHDL(self) -> None: |