diff --git a/week1/01-example.md b/week1/01-example.md
index 22408fd57e8174ae2aea99491898c6f783f715aa..54310c0b4912ea7c6fb872353f8c9e3525bfcb4f 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)