diff --git a/docs/tutorial/index.html b/docs/tutorial/index.html
index 8fc546727b0..43c5dab5de2 100644
--- a/docs/tutorial/index.html
+++ b/docs/tutorial/index.html
@@ -15,17 +15,26 @@
LLVM Tutorial: Table of Contents
- - An Introduction to LLVM: Basic Concepts and Design
- - Basic Tutorials
+
- An Introduction to LLVM: Basic Concepts and Design
+ - Simple JIT Tutorials
- - Tutorial 1: A First Function
- - Tutorial 2: A More Complicated Function
- - Tutorial 3: Reading and Writing Bitcode
- - Tutorial 4: Running Optimizations
- - Tutorial 5: Invoking the JIT
+ - A First Function
+ - A More Complicated Function
+ - Reading and Writing Bitcode
+ - Running Optimizations
+ - Invoking the JIT
- - Example: Using LLVM to execute a simple language in JIT
+ - Implementing a simple language with LLVM
+
+ - The basic language, with its lexer
+ - Implementing a Parser and AST
+ - Implementing code generation to LLVM IR
+ - Extending the language: if/then/else
+ - Extending the language: operator overloading
+ - Adding JIT codegen support
+ - Thoughts and ideas for extensions
+