From f8c82901e75bb1e5dd4bdee5c09a4b2eef001d19 Mon Sep 17 00:00:00 2001 From: Mike Lee Williams Date: Sat, 28 Sep 2019 11:52:12 -0700 Subject: [PATCH] update blog post link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dcbdf08..cf38862 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ First, an index is generated from the data. When performing a search, the follow * Each term except the last is searched for exactly and scores for each item in the data are updated according to the relevance of the term to the data. * The last keyword is treated as a prefix, and Wade performs a depth-first search and updates the score for all data prefixed with this term using the relevance weight for the term. This allows for searching as a user types. -In-depth explanations of the algorithm are available on the [blog post](https://blog.kabir.ml/posts/inside-wade.html) and [pdf](https://github.com/kbrsh/wade/blob/master/Wade.pdf). +In-depth explanations of the algorithm are available on the [blog post](https://blog.kabir.sh/posts/inside-wade.html) and [pdf](https://github.com/kbrsh/wade/blob/master/Wade.pdf). ### Support