From 285a74c37f678e23cb827cf2f4fa1211709dcc65 Mon Sep 17 00:00:00 2001 From: Frank Dietrich Date: Thu, 30 Apr 2015 01:10:47 +0200 Subject: [PATCH] fix broken link to the white paper --- README.md | 2 +- src/main/java/org/ahocorasick/trie/Trie.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca79ef4..d631034 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Some examples you could use the Aho-Corasick algorithm for: This library is the Java implementation of the afore-mentioned Aho-Corasick algorithm for efficient string matching. The algorithm is explained in great detail in the white paper written by -Aho and Corasick: ftp://163.13.200.222/assistant/bearhero/prog/%A8%E4%A5%A6/ac_bm.pdf +Aho and Corasick: ftp://im1.im.tku.edu.tw/assistant/bearhero/prog/%E5%85%B6%E5%AE%83/ac_bm.pdf Usage ----- diff --git a/src/main/java/org/ahocorasick/trie/Trie.java b/src/main/java/org/ahocorasick/trie/Trie.java index 155698b..0cbc3c6 100644 --- a/src/main/java/org/ahocorasick/trie/Trie.java +++ b/src/main/java/org/ahocorasick/trie/Trie.java @@ -11,7 +11,7 @@ import java.util.concurrent.LinkedBlockingDeque; /** * - * Based on the Aho-Corasick white paper, Bell technologies: ftp://163.13.200.222/assistant/bearhero/prog/%A8%E4%A5%A6/ac_bm.pdf + * Based on the Aho-Corasick white paper, Bell technologies: ftp://im1.im.tku.edu.tw/assistant/bearhero/prog/%E5%85%B6%E5%AE%83/ac_bm.pdf * @author Robert Bor */ public class Trie {