aboutsummaryrefslogtreecommitdiff
path: root/docs/docs/internals
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-11-07 15:36:20 +0100
committerFelix Mulder <felix.mulder@gmail.com>2016-11-07 15:57:52 +0100
commitfb0f3ff8c8e5a2e3b906dd9a8815a2d22ca9c38c (patch)
treef99953c897acd0c2fabf75060e1845650547ccac /docs/docs/internals
parent5d590242132b0f38fc04afed2c787dadfd8d6c2f (diff)
downloaddotty-fb0f3ff8c8e5a2e3b906dd9a8815a2d22ca9c38c.tar.gz
dotty-fb0f3ff8c8e5a2e3b906dd9a8815a2d22ca9c38c.tar.bz2
dotty-fb0f3ff8c8e5a2e3b906dd9a8815a2d22ca9c38c.zip
Fix #1674: add search to doc site
Diffstat (limited to 'docs/docs/internals')
-rw-r--r--docs/docs/internals/backend.md2
-rw-r--r--docs/docs/internals/contexts.md4
-rw-r--r--docs/docs/internals/dotc-scalac.md4
-rw-r--r--docs/docs/internals/overall-structure.md4
-rw-r--r--docs/docs/internals/periods.md5
-rw-r--r--docs/docs/internals/type-system.md3
6 files changed, 5 insertions, 17 deletions
diff --git a/docs/docs/internals/backend.md b/docs/docs/internals/backend.md
index 1fb9bba26..f10cf1e82 100644
--- a/docs/docs/internals/backend.md
+++ b/docs/docs/internals/backend.md
@@ -3,8 +3,6 @@ layout: default
title: "Backend Internals"
---
-Backend Internals
-=================
The code for the backend is split up by functionality and assembled in the
objet `GenBCode`.
diff --git a/docs/docs/internals/contexts.md b/docs/docs/internals/contexts.md
index e2111029c..09cbb40c5 100644
--- a/docs/docs/internals/contexts.md
+++ b/docs/docs/internals/contexts.md
@@ -1,10 +1,8 @@
---
-title: Contexts
layout: default
+title: "Contexts"
---
-Contexts
-========
The `Context` contains the state of the compiler, for example
* `settings`
* `freshNames` (`FreshNameCreator`)
diff --git a/docs/docs/internals/dotc-scalac.md b/docs/docs/internals/dotc-scalac.md
index cf668cbb8..f41f21370 100644
--- a/docs/docs/internals/dotc-scalac.md
+++ b/docs/docs/internals/dotc-scalac.md
@@ -1,10 +1,8 @@
---
layout: default
-title: "Scalac vs Dotty"
+title: "Differences between Scalac and Dotty"
---
-Differences between Scalac and Dotty
-====================================
Overview explanation how symbols, named types and denotations hang together:
[Denotations.scala:22]
diff --git a/docs/docs/internals/overall-structure.md b/docs/docs/internals/overall-structure.md
index 214e47aa5..08d9ebe97 100644
--- a/docs/docs/internals/overall-structure.md
+++ b/docs/docs/internals/overall-structure.md
@@ -1,10 +1,8 @@
---
layout: default
-title: "Project Structure"
+title: "Dotty Overall Structure"
---
-Dotc Overall Structure
-======================
The compiler code is found in package [dotty.tools]. It spans the
following three sub-packages:
diff --git a/docs/docs/internals/periods.md b/docs/docs/internals/periods.md
index fe788915d..bb161b7b8 100644
--- a/docs/docs/internals/periods.md
+++ b/docs/docs/internals/periods.md
@@ -1,11 +1,8 @@
---
layout: default
-title: "Periods"
-toc: true
+title: "Dotc's concept of time"
---
-Dotc's concept of time
-======================
Conceptually, the `dotc` compiler's job is to maintain views of various
artifacts associated with source code at all points in time. But what is
*time* for `dotc`? In fact, it is a combination of compiler runs and compiler
diff --git a/docs/docs/internals/type-system.md b/docs/docs/internals/type-system.md
index 191c107cf..e86e07fd1 100644
--- a/docs/docs/internals/type-system.md
+++ b/docs/docs/internals/type-system.md
@@ -1,9 +1,8 @@
---
layout: default
+title: "Type System"
---
-Type System
-===========
The types are defined in [dotty/tools/dotc/core/Types.scala][1]
## Class diagram ##