diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
index ff83a1b8134b7799042021d1ab3fe9f238962e8b..a624fdb07a17df7edac9a7fd084e504e37fad472 100644
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -324,8 +324,7 @@ Can Python be compiled to machine code, C or some other language?
 `Cython <http://cython.org/>`_ compiles a modified version of Python with
 optional annotations into C extensions.  `Nuitka <http://www.nuitka.net/>`_ is
 an up-and-coming compiler of Python into C++ code, aiming to support the full
-Python language. For compiling to Java you can consider
-`VOC <https://voc.readthedocs.io>`_.
+Python language.
 
 
 How does Python manage memory?