From 16b0453b74648bf3e7705a994860f75d2a0a891a Mon Sep 17 00:00:00 2001 From: Scott Wiedemann Date: Fri, 13 Nov 2015 12:27:16 -0700 Subject: [PATCH] Update ToDate.java Updating SimpleDateFormat api doc url for ToDate function. --- main/src/com/google/refine/expr/functions/ToDate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/src/com/google/refine/expr/functions/ToDate.java b/main/src/com/google/refine/expr/functions/ToDate.java index 1006d5bde..7b2abb88c 100644 --- a/main/src/com/google/refine/expr/functions/ToDate.java +++ b/main/src/com/google/refine/expr/functions/ToDate.java @@ -178,7 +178,7 @@ public class ToDate implements Function { throws JSONException { writer.object(); - writer.key("description"); writer.value("Returns o converted to a date object, you can hint if the day or the month is listed first, or give an ordered list of possible formats using this syntax: http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html"); + writer.key("description"); writer.value("Returns o converted to a date object, you can hint if the day or the month is listed first, or give an ordered list of possible formats using this syntax: http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html"); writer.key("params"); writer.value("o, boolean month_first / format1, format2, ... (all optional)"); writer.key("returns"); writer.value("date"); writer.endObject();