documentation polish

This commit is contained in:
Arvid Norberg
2013-07-19 22:05:59 +00:00
parent facbf9c178
commit b27ff4bd00
2 changed files with 3 additions and 4 deletions

View File

@@ -210,7 +210,7 @@ def parse_class(lno, lines, filename):
continue
if looks_like_variable(l):
fields.append({ 'signature': l, 'name': l.split(' ')[-1][0:-1], 'desc': context})
fields.append({ 'signature': l, 'name': l.split(' ')[-1].split(':')[0].split(';')[0], 'desc': context})
context = ''
continue