Fix missing newline

This commit is contained in:
lukew3
2020-11-21 11:13:34 -05:00
parent 41fdc0f5df
commit 6ee6a69cf0
2 changed files with 3 additions and 2 deletions

View File

@@ -9,7 +9,8 @@ If you have an idea for a generator, please add it as an issue and tag it with t
## Table of Contents ## Table of Contents
* [Installation](#installation) * [Installation](#installation)
* [Basic Usage](#basic-usage) * [Basic Usage](#basic-usage)
* [More Complicated Usage](#more-complicated-usage)* [Documentation](#documentation) * [More Complicated Usage](#more-complicated-usage)
* [Documentation](#documentation)
* [List of Generators](#list-of-generators) * [List of Generators](#list-of-generators)
* [algebra](#algebra) * [algebra](#algebra)
* [basic_math](#basic_math) * [basic_math](#basic_math)

View File

@@ -19,7 +19,7 @@ def write_table_of_contents():
tc_lines = [ tc_lines = [
'* [Installation](#installation)\n', '* [Installation](#installation)\n',
'* [Basic Usage](#basic-usage)\n', '* [Basic Usage](#basic-usage)\n',
' * [More Complicated Usage](#more-complicated-usage)' ' * [More Complicated Usage](#more-complicated-usage)\n'
'* [Documentation](#documentation)\n', '* [Documentation](#documentation)\n',
'* [List of Generators](#list-of-generators)\n', '* [List of Generators](#list-of-generators)\n',
] ]