From 12bf3389e86e2eea95a2f30b1f2a8dca4e9ff3b0 Mon Sep 17 00:00:00 2001 From: oneofthezombies Date: Tue, 13 Feb 2024 06:51:51 +0900 Subject: [PATCH] docs: flx bench link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 60bf758..c166f12 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ This project was inspired by [node-tree-kill](https://github.com/pkrumins/node-t The reason I created this is because I have a case where I need to stop grandchild processes. This is because the way to kill a grandchild process on the Windows platform is to use the `Win32` API to determine the process relationship and either kill them all (Kill Tree's implementation) or call the `taskkill` program. -Even my program is more than __3-5x faster__ than `taskkill`. (see [bench](/docs/bench.md)) +Even my program is more than __3-5x faster__ than `taskkill`. (see [bench](https://github.com/oneofthezombies/kill-tree/blob/main/docs/bench.md)) ---