Skip to content

Fix documentation build #9980

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 30, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.todo']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ['_templates', 'archive']

# The suffix of source filenames.
source_suffix = '.rst'
Expand Down Expand Up @@ -146,7 +146,7 @@

# Additional templates that should be rendered to pages, maps page names to
# template names.
html_additional_pages = {'LangRef': 'archive/LangRef.html'}
html_additional_pages = {'archive/LangRef': 'LangRef.html'}

# If false, no module index is generated.
# html_domain_indices = True
Expand Down
2 changes: 1 addition & 1 deletion docs/proposals/InitializerInheritance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ doing so is safe.
Complete object initializers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Introduce the notion of a complete object initializer, which is
written as an initializer with ``Self`` as its return type [#], e.g.::
written as an initializer with ``Self`` as its return type [#]_, e.g.::

init() -> Self {
// ...
Expand Down