Skip to content

Commit 832a94d

Browse files
committed
docs: Remove obsolete floating-point thread message from halcompile
1 parent 04a47d9 commit 832a94d

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/hal/utils/halcompile.g

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -993,11 +993,7 @@ def document(filename, outfilebase):
993993
if functions:
994994
print("\n== FUNCTIONS\n", file=f)
995995
for _, name, fp, doc in finddocs('funct'):
996-
print("%s" % to_hal_man(name), end='', file=f)
997-
if fp:
998-
print(" (requires a floating-point thread)::", file=f)
999-
else:
1000-
print("::", file=f)
996+
print("%s::" % to_hal_man(name), file=f)
1001997
if doc:
1002998
print(doc, file=f)
1003999
else:

0 commit comments

Comments
 (0)