summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-01-23 13:41:36 +0900
committerGitHub <noreply@github.com>2023-01-23 13:41:36 +0900
commitfe4860f7c8af0f02bfae880e81ce092264e0ec56 (patch)
treedf16deb90143fa4c9b9e1b0892df7f509a7ac1e1
parent9463784ef31318f2047e6d0754656765ca04f465 (diff)
parent42e91752ad9ad85280432863042a57c7327b4486 (diff)
downloadjson-fe4860f7c8af0f02bfae880e81ce092264e0ec56.tar.gz
Merge pull request #509 from okuramasafumi/patch-1
Fix dead link to Ragel in README
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 288ccdf..8c63c2c 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ will be two variants available:
* The quite a bit faster native extension variant, which is in parts
implemented in C or Java and comes with its own unicode conversion
functions and a parser generated by the ragel state machine compiler
- http://www.complang.org/ragel/ .
+ http://www.colm.net/open-source/ragel/ .
Both variants of the JSON generator generate UTF-8 character sequences by
default. If an :ascii\_only option with a true value is given, they escape all
@@ -72,7 +72,7 @@ with:
If you want to create the `parser.c` file from its `parser.rl` file or draw nice
graphviz images of the state machines, you need ragel from:
-http://www.complang.org/ragel/
+http://www.colm.net/open-source/ragel/
## Usage