From 87627cef46527e1211c876a3caf2674f74d6ee70 Mon Sep 17 00:00:00 2001 From: Sean Breckenridge Date: Sun, 16 Apr 2023 13:20:54 -0700 Subject: [PATCH] docs: uncapitalize gpx --- doc/QUERY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/QUERY.md b/doc/QUERY.md index 119f936..b672dff 100644 --- a/doc/QUERY.md +++ b/doc/QUERY.md @@ -179,9 +179,9 @@ This can be used on any function that produces an `Iterator`/`Generator` like ou ## GPX -The `hpi query` command can also be used with the `--output gpx` flag to generate GPX files from a list of locations, like the ones defined in the `my.location` package. This could be used to extract some date range and create a `gpx` file which can then be visualized by a GUI application. +The `hpi query` command can also be used with the `--output gpx` flag to generate gpx files from a list of locations, like the ones defined in the `my.location` package. This could be used to extract some date range and create a `gpx` file which can then be visualized by a GUI application. -This prints the contents for the `GPX` file to STDOUT, and prints warnings for any objects it could not convert to locations to STDERR, so pipe STDOUT to a output file, like `>out.gpx` +This prints the contents for the `gpx` file to STDOUT, and prints warnings for any objects it could not convert to locations to STDERR, so pipe STDOUT to a output file, like `>out.gpx` ``` hpi query my.location.all --after '2021-07-01T00:00:00' --before '2021-07-05T00:00:00' --order-type datetime --output gpx >out.gpx