Generated from commit: https://github.com/eclipse/xtext/commit/2c8ba79584b9a3827a522d84fd4ffe66d216bd63
diff --git a/documentation/102_moviesexample.html b/documentation/102_moviesexample.html
index f7645a3..56664d7 100644
--- a/documentation/102_moviesexample.html
+++ b/documentation/102_moviesexample.html
@@ -216,12 +216,12 @@
 
 <p>A <a href="202_xtend_classes_members.html#fields">field’s type</a> can be inferred from the expression on the right hand-side. That is called local type inference and is supported everywhere in Xtend. We want the field to be final, so we declare it as a value using the keyword <code>val</code>.</p>
 
-<p>The initialization on the right hand side first creates a new <a href="http://docs.oracle.com/javase/8/docs/api/java/io/FileReader.html">FileReader</a>. Then the method <code>readLines()</code> is invoked on that instance. But if you have a look at <code>FileReader</code> you will not find such a method. In fact <code>readLines()</code> is a static method from Google Guava’s <a href="http://docs.guava-libraries.googlecode.com/git-history/release/javadoc/com/google/common/io/CharStreams.html">CharStreams</a> which was imported as an <a href="202_xtend_classes_members.html#extension-imports">extension</a>. Extensions allow us to use this readable syntax.</p>
+<p>The initialization on the right hand side first creates a new <a href="http://docs.oracle.com/javase/8/docs/api/java/io/FileReader.html">FileReader</a>. Then the method <code>readLines()</code> is invoked on that instance. But if you have a look at <code>FileReader</code> you will not find such a method. In fact <code>readLines()</code> is a static method from Google Guava’s <a href="https://guava.dev/releases/27.1-jre/api/docs//com/google/common/io/CharStreams.html">CharStreams</a> which was imported as an <a href="202_xtend_classes_members.html#extension-imports">extension</a>. Extensions allow us to use this readable syntax.</p>
 
 <pre><code class="language-xtend">import static extension com.google.common.io.CharStreams.*
 </code></pre>
 
-<p><a href="http://docs.guava-libraries.googlecode.com/git-history/release/javadoc/com/google/common/io/CharStreams.html"><code>CharStreams.readLines(Reader)</code></a> returns a <a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html"><code>List&lt;String&gt;</code></a> on which we call another extension method <code>map</code>. This one is defined in the runtime library (<a href="https://github.com/eclipse/xtext-lib/blob/master/org.eclipse.xtext.xbase.lib/src/org/eclipse/xtext/xbase/lib/ListExtensions.java">ListExtensions.map(…)</a>) and is automatically imported and therefore available on all lists. The <code>map</code> extension expects a function as a parameter. It basically invokes that function for each value in the list and returns another list containing the results of the function invocations. Actually this mapping is performed lazily so if you never access the values of the result list, the mapping function is never executed.</p>
+<p><a href="https://guava.dev/releases/27.1-jre/api/docs//com/google/common/io/CharStreams.html"><code>CharStreams.readLines(Reader)</code></a> returns a <a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html"><code>List&lt;String&gt;</code></a> on which we call another extension method <code>map</code>. This one is defined in the runtime library (<a href="https://github.com/eclipse/xtext-lib/blob/master/org.eclipse.xtext.xbase.lib/src/org/eclipse/xtext/xbase/lib/ListExtensions.java">ListExtensions.map(…)</a>) and is automatically imported and therefore available on all lists. The <code>map</code> extension expects a function as a parameter. It basically invokes that function for each value in the list and returns another list containing the results of the function invocations. Actually this mapping is performed lazily so if you never access the values of the result list, the mapping function is never executed.</p>
 
 <p>Function objects are created using <a href="203_xtend_expressions.html#lambdas">lambda expressions</a> (the code in squared brackets). Within the lambda we process a single line from the text file and turn it into a movie by splitting the string using two whitespace characters as the separator. On the result of the split operation, the method <code>iterator()</code> is invoked. As you might know <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html">String.split(String)</a> returns a string array (<code>String[]</code>), which Xtend <a href="201_types.html#conversion-rules">auto-converts to a list</a> when we call <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html"><code>Iterable.iterator()</code></a> on it.</p>
 
diff --git a/feed.xml b/feed.xml
index bb4936a..989593c 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,8 +6,8 @@
 </description>
     <link>http://xtend-lang.org/xtend/</link>
     <atom:link href="http://xtend-lang.org/xtend/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Fri, 06 Nov 2020 11:41:47 +0000</pubDate>
-    <lastBuildDate>Fri, 06 Nov 2020 11:41:47 +0000</lastBuildDate>
+    <pubDate>Mon, 16 Nov 2020 12:34:01 +0000</pubDate>
+    <lastBuildDate>Mon, 16 Nov 2020 12:34:01 +0000</lastBuildDate>
     <generator>Jekyll v2.5.3</generator>
     
       <item>