Skip to content

Commit 180dffb

Browse files
committed
0.4.7 Update
Better unicode
1 parent e0b8292 commit 180dffb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = 'sphinxfortran_ng'
3-
version = '0.4.6'
3+
version = '0.4.7'
44
authors = [{name = "Lorenzo Crippa", email="[email protected]"}]
55
description = "An improved version of the sphinx-fortran python module"
66
readme = "README.md"

src/sphinxfortran_ng/fortran_autodoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ def format_use(self, block, indent=0, short=False):
11291129
if fname != falias:
11301130
falias = self.format_funcref(
11311131
falias, module=mname)
1132-
func = '%s => %s' % (self.format_funcref(fname), falias)
1132+
func = '%s %s' % (self.format_funcref(fname), falias)
11331133
funcs.append(func)
11341134
shortline += ' (%s)' % ', '.join(funcs)
11351135
funcline += '%s' % '\n '.join(funcs)

0 commit comments

Comments
 (0)