diff options
Diffstat (limited to 'pyGHDL/libghdl/vhdl/sem.py')
-rw-r--r-- | pyGHDL/libghdl/vhdl/sem.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyGHDL/libghdl/vhdl/sem.py b/pyGHDL/libghdl/vhdl/sem.py index e1d8c7a02..4cc3985e6 100644 --- a/pyGHDL/libghdl/vhdl/sem.py +++ b/pyGHDL/libghdl/vhdl/sem.py @@ -39,12 +39,12 @@ from pyGHDL.libghdl import libghdl @export def Semantic(DesignUnit) -> None: - """ - Do the semantic analysis of design unit :obj:`DesignUnit`. + """ + Do the semantic analysis of design unit :obj:`DesignUnit`. - Also add a few node or change some nodes, when for example an identifier is - changed into an access to the type. + Also add a few node or change some nodes, when for example an identifier is + changed into an access to the type. - :param DesignUnit: Design unit to semantically analyze. Type: ``Iir_Design_Unit`` - """ - libghdl.vhdl__sem__semantic(DesignUnit) + :param DesignUnit: Design unit to semantically analyze. Type: ``Iir_Design_Unit`` + """ + libghdl.vhdl__sem__semantic(DesignUnit) |