We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb158c8 commit b66328bCopy full SHA for b66328b
generate_docs.py
@@ -280,7 +280,7 @@ def get_chunk_identifiers(chunk: str) -> List[str]:
280
281
assert not chunk.startswith('typedef '), chunk
282
283
- if match := re.search(r'(?:NTAPI|NTAPI_INLINE)\n(\w+)\s*\(', chunk):
+ if match := re.search(r'(?:NTAPI|NTAPI_INLINE)\s+(\w+)\s*\(', chunk):
284
return [match.group(1)]
285
286
assert 'NTAPI' not in chunk, chunk
0 commit comments