sphinx-contrib / matlabdomain

A Sphinx extension for documenting Matlab code
http://sphinxcontrib-matlabdomain.readthedocs.io/
Other
69 stars 45 forks source link

comment at end of classdef line being added to Bases #172

Closed rdzman closed 1 year ago

rdzman commented 1 year ago

I have some classdef files that include a base class (or classes) followed by a comment, such as ...

classdef MyClass < MyBaseClass   % a comment

... and when doing .. autoclass:: MyClass with :show-inheritance: the comment is being included in the list of the base classes, as follows.

class myClass Bases: MyBaseClass, % a comment