From 8ac8d3bb2372ee365868a0dd4ce4059f67f1dea3 Mon Sep 17 00:00:00 2001
From: Guillaume Martres <smarter@ubuntu.com>
Date: Thu, 19 Sep 2019 17:07:08 +0200
Subject: [PATCH] Document Windows issue

---
 week1/01-example.md | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/week1/01-example.md b/week1/01-example.md
index 22408fd..54310c0 100644
--- a/week1/01-example.md
+++ b/week1/01-example.md
@@ -124,7 +124,11 @@ The hover is split into two parts: the first part is:
 ```scala
 (xs: List[Int]): Int
 ```
-This means that `max` is a method that takes a `List` of `Int` as argument and returns an `Int`. The second part is the documentation of `max`. We can jump to the definition of max by `Ctrl+click` (`Cmd+click` on Mac) or by `right click -> Go to Definition`. Once there we see:
+This means that `max` is a method that takes a `List` of `Int` as argument and
+returns an `Int`. The second part is the documentation of `max`. We can jump to
+the definition of max by `Ctrl+click` (`Cmd+click` on Mac) or by `right click ->
+Go to Definition` (*note: this is currently broken under Windows, you'll have to
+manually open `src/main/scala/example/Lists.scala`*). Once there we see:
 
 ![](images/max-def.png)
 
-- 
GitLab