Skip to content

Commit fd5d666

Browse files
johnkeepingJonathan Corbet
authored andcommitted
Documentation/sphinx: fix primary_domain configuration
With Sphinx 1.5.3 I get the warning: WARNING: primary_domain 'C' not found, ignored. It seems that domain names in Sphinx are case-sensitive and for the C domain the name must be lower case. Signed-off-by: John Keeping <[email protected]> Signed-off-by: Jonathan Corbet <[email protected]>
1 parent f3fc83e commit fd5d666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Documentation/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
# If true, `todo` and `todoList` produce output, else they produce nothing.
136136
todo_include_todos = False
137137

138-
primary_domain = 'C'
138+
primary_domain = 'c'
139139
highlight_language = 'none'
140140

141141
# -- Options for HTML output ----------------------------------------------

0 commit comments

Comments
 (0)