Skip to content

Commit

Permalink
Correct C++ normalization
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 17, 2024
1 parent 27b8a60 commit 1566dfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def countfiles(lang):
'Makefile': lambda root, filename: filename == 'Makefile',
'Python': lambda root, filename: fnmatch(filename, '*.py') and 'docs' not in root,
'C': lambda root, filename: fnmatch(filename, '*.c') or fnmatch(filename, '*.h'),
'C++': lambda root, filename: fnmatch(filename, '*.cpp') or fnmatch(filename, '*.h'),
'C++': lambda root, filename: fnmatch(filename, '*.cpp') or fnmatch(filename, '*.hpp'),
'C#': lambda root, filename: fnmatch(filename, '*.cs'),
'Java': lambda root, filename: fnmatch(filename, '*.java'),
'JavaScript': lambda root, filename: fnmatch(filename, '*.js'),
Expand Down

0 comments on commit 1566dfc

Please sign in to comment.