From d5a1974514026d01371595713d8f8adc0828e115 Mon Sep 17 00:00:00 2001 From: Barnsa Date: Wed, 15 Jul 2020 10:23:07 +0100 Subject: [PATCH] Made functions folder in line with the rest of the format --- docs/functions/intro-to-functions.md | 1 + docs/index.md | 15 +++++++-------- mkdocs.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 docs/functions/intro-to-functions.md diff --git a/docs/functions/intro-to-functions.md b/docs/functions/intro-to-functions.md new file mode 100644 index 0000000..e8e881b --- /dev/null +++ b/docs/functions/intro-to-functions.md @@ -0,0 +1 @@ +# Functions diff --git a/docs/index.md b/docs/index.md index b966156..c6566f3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,16 +55,15 @@ * [Else](./conditionals/README.md#Else) * [Elif](./conditionals/README.md#elif) * Iteration - * [For](./for-loops/README.md) - * [Test Your Knowledge: Countdown](./for-loops/README.md#test-your-knowledge-countdown) - * [While](./while-loops/README.md) - * [Test Your Knowledge: Fibonacci](./while-loops/README.md#test-your-knowledge) - * Break - * Continue - * Else + * [For](./iteration/for-loops/README.md) + * [Test Your Knowledge: Countdown](./iteration/for-loops/README.md#test-your-knowledge-countdown) + * [While](./iteration/while-loops/README.md) + * [Test Your Knowledge: Fibonacci](./iteration/while-loops/README.md#test-your-knowledge) + * [Break](./iteration/control-statements/README.md#break) + * [Continue](./iteration/control-statements/README.md#continue) * Test Your Knowledge: They Came From Space (or other game) -* Functions +* [Functions](./functions/intro-to-functions) * Function Syntax * Returning Values * Parameters diff --git a/mkdocs.yml b/mkdocs.yml index 998c177..ee1bcb3 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -11,8 +11,8 @@ nav: - 'Recursion': 'iteration/recursion/README.md' - 'Functions': - 'Introduction to functions': 'functions/intro-to-functions.md' - - 'Built-in functions': 'functions/built-in-functions/README.md' - 'User created functions': 'functions/user-functions/README.md' + - 'Built-in functions': 'functions/built-in-functions/README.md' markdown_extensions: