summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2015-07-24 22:52:04 -0700
committerDavid Tolnay <dtolnay@gmail.com>2015-07-24 22:55:58 -0700
commitb9c340a211404e403301b47f970fecf25ca97d32 (patch)
tree0e3e9c540ebfe08f973bb23181d967c6e4ff8278 /main.c
parent3a964e2025d13e636e2ba4f096ce33dcc4918b1e (diff)
Change homepage .com -> .io
The .com redirects to .io, but might as well have the correct one to begin with.
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 0ac5d62b..a38b6c89 100644
--- a/main.c
+++ b/main.c
@@ -48,7 +48,7 @@ static void usage(int code) {
"\tcopying jq's input to its output unmodified (except for\n"
"\tformatting).\n"
"\tFor more advanced filters see the jq(1) manpage (\"man jq\")\n"
- "\tand/or http://stedolan.github.com/jq\n\n"
+ "\tand/or http://stedolan.github.io/jq\n\n"
"\tSome of the options include:\n"
"\t -c\t\tcompact instead of pretty-printed output;\n"
"\t -n\t\tuse `null` as the single input value;\n"
@@ -69,7 +69,7 @@ static void usage(int code) {
static void die() {
fprintf(stderr, "Use %s --help for help with command-line options,\n", progname);
- fprintf(stderr, "or see the jq manpage, or online docs at http://stedolan.github.com/jq\n");
+ fprintf(stderr, "or see the jq manpage, or online docs at http://stedolan.github.io/jq\n");
exit(2);
}