# HG changeset patch
# User Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
# Date 1600269206 -7200
# Node ID 37f54743b1fd160592afa98c554a87b7ea874589
# Parent  34ce6e1b1be8703622005fbba39330fa5fd2a9c5
Correcting invalid documentation URL refs.

diff --git a/release.txt b/release.txt
--- a/release.txt
+++ b/release.txt
@@ -38,7 +38,7 @@ Multiple connection properties are separ
 For example:
   jdbc:monetdb://localhost:41000/mydb?user=monetdb&password=onlyiknow&so_timeout=20000&treat_clob_as_varchar=true&treat_blob_as_binary=true
 
-See also: https://www.monetdb.org/Documentation/Manuals/SQLreference/Programming/JDBC
+See also: https://www.monetdb.org/Documentation/SQLreference/Programming/JDBC
 
 
 JDBC COMPLIANCE
@@ -173,7 +173,7 @@ Notes and Tips for Java Programmers usin
   This eliminates the call to findColumn(String columnLabel) for
   each value of every column for every row in the ResultSet.
   See also the example Java JDBC program on:
-  https://www.monetdb.org/Documentation/Manuals/SQLreference/Programming/JDBC
+  https://www.monetdb.org/Documentation/SQLreference/Programming/JDBC
 
 - Avoid using rs.getObject() as it will need to construct a new Object for
   each value, even for primitive types such as int, long, boolean.