diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
 # `remarks` — A DSL for marking student work
 
 [![License: BSD 3-Clause](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](LICENSE)
-[![Travis CI (Linux + macOS) Status](https://travis-ci.org/oleks/remarks.svg)](https://travis-ci.org/oleks/remarks)
-[![AppVeyor (Windows) Status"](https://ci.appveyor.com/api/projects/status/g0hviw442o2bl8yi?svg=true)](https://ci.appveyor.com/project/oleks/remarks)
+[![Travis CI (Linux + macOS) Status](https://travis-ci.org/DIKU-EDU/remarks.svg)](https://travis-ci.org/DIKU-EDU/remarks)
+[![AppVeyor (Windows) Status"](https://ci.appveyor.com/api/projects/status/g0hviw442o2bl8yi?svg=true)](https://ci.appveyor.com/project/DIKU-EDU/remarks)
 
 When judging student performance, it is useful to have both small, composable,
 quantitative judgements, and qualitative remarks. This makes both spreadsheets
@@ -34,7 +34,7 @@
 These can be invoked using `remarks parse`, `remarks check`, and `remarks
 show`, respectively.
 
-See [Issues](https://github.com/oleks/remarks/issues) for a roadmap. Feel free
+See [Issues](https://github.com/DIKU-EDU/remarks/issues) for a roadmap. Feel free
 to add or fix a couple issues.
 
 ## Usage
@@ -67,7 +67,7 @@
 ```
 
 If you clone the repository, or [download the
-sources](https://github.com/oleks/remarks/releases), you get two further
+sources](https://github.com/DIKU-EDU/remarks/releases), you get two further
 options:
 
 * If you are using the purely functional package manager
diff --git a/remarks.cabal b/remarks.cabal
--- a/remarks.cabal
+++ b/remarks.cabal
@@ -1,8 +1,8 @@
 name:                remarks
-version:             0.1.10
+version:             0.1.11
 synopsis:            A DSL for marking student work
 description:         A DSL for marking student work; see README.md for further details.
-homepage:            https://github.com/oleks/remarks#readme
+homepage:            https://github.com/DIKU-EDU/remarks#readme
 license:             BSD3
 license-file:        LICENSE
 author:              Oleks Shturmov <oleks@oleks.info>, Michael Kirkedal
@@ -63,4 +63,4 @@
 
 source-repository head
   type:     git
-  location: https://github.com/oleks/remarks
+  location: https://github.com/DIKU-EDU/remarks
diff --git a/src/Ast.hs b/src/Ast.hs
--- a/src/Ast.hs
+++ b/src/Ast.hs
@@ -1,5 +1,14 @@
 {-# LANGUAGE DeriveGeneric #-}
 
+{-|
+Module      : Ast
+Description : The remarks abstract-syntax tree
+Copyright   : (c) DIKU, 2016-present
+License     : EUPLv1.1
+Stability   : experimental
+
+All @.mrk@ files are parsed as a list of 'Judgement's, as defined below.
+-}
 module Ast where
 
 import Text.PrettyPrint.GenericPretty
