Skip to content

Commit c63db0f

Browse files
committed
Unify the way doc comments are written
1 parent 2d81860 commit c63db0f

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

hbs.tcl

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace eval hbs {
3535
# True (1) if BuildDir is enforced via the HBS_BUILD_DIR environment variable.
3636
set BuildDirEnvSet 0
3737

38-
# BuildDir is the build directory path.
38+
# Build directory path.
3939
#
4040
# You can enforce value of the BuildDir variable
4141
# by setting the HBS_BUILD_DIR environment variable.
@@ -46,36 +46,37 @@ namespace eval hbs {
4646
# True (1) if Device is enforced via the HBS_DEVICE environment variable.
4747
set DeviceEnvSet 0
4848

49-
# Device is target device. Often also called part.
49+
# Target device. Often also called part, for example in Vivado nomenclature.
5050
#
5151
# See also 'hbs doc SetDevice'.
5252
set Device ""
5353

54-
# Lib is current library for adding files.
54+
# Current library for adding files.
5555
#
5656
# See also 'hbs doc SetLib'.
5757
set Lib ""
5858

5959
# True (1) if Std is enforced via the HBS_STD environment variable.
6060
set StdEnvSet 0
6161

62-
# Std is current HDL standard revision for adding files.
62+
# Current HDL standard revision for adding files.
63+
# For example, '2002', '2008'.
6364
#
6465
# See also 'hbs doc SetStd'.
6566
set Std ""
6667

6768
# True (1) if Tool is enforced via the HBS_TOOL environment variable.
6869
set ToolEnvSet 0
6970

70-
# Tool is target tool name. It must be lowercase.
71+
# Target tool name. It must be lowercase.
7172
#
7273
# You can enforce value of the Tool variable
7374
# by setting the HBS_TOOL environment variable.
7475
#
7576
# See also 'hbs doc SetTool'.
7677
set Tool ""
7778

78-
# Top is name of the top entity/module. Often also called toplevel.
79+
# Name of the top entity/module. Often also called toplevel.
7980
#
8081
# See also 'hbs doc SetTop'.
8182
set Top ""
@@ -346,7 +347,7 @@ namespace eval hbs {
346347
}
347348
}
348349

349-
# ToolType reutrns type of the currently set tool.
350+
# Reutrns the type of the currently set tool.
350351
# Possible values are:
351352
# - formal,
352353
# - simulation,
@@ -580,7 +581,7 @@ namespace eval hbs {
580581
}
581582
}
582583

583-
# SetGeneric sets generic (Verilog parameter) value. The actual action might
584+
# Sets generic (Verilog parameter) value. The actual action might
584585
# be postponed, as for example, for GHDL the generic values are provided
585586
# as command line arguments when running the simulation.
586587
#

0 commit comments

Comments
 (0)