aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTwoFinger <Two-Finger@users.noreply.github.com>2018-06-02 17:04:35 +0300
committerMarc André Tanner <mat@brain-dump.org>2020-01-30 15:21:07 +0100
commite72197685ba442fb9fa0fb658fe68d22a3ba7156 (patch)
treed915957e5168ca3ca95933bff32dea2514019611
parentf41a9cf4cbca26d7c4a8ff56e7d64f889331cd55 (diff)
downloadvis-e72197685ba442fb9fa0fb658fe68d22a3ba7156.tar.gz
vis-e72197685ba442fb9fa0fb658fe68d22a3ba7156.tar.xz
main: fix a few mistakes in comments
-rw-r--r--main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main.c b/main.c
index d368e27..4a59ea9 100644
--- a/main.c
+++ b/main.c
@@ -72,19 +72,19 @@ static const char *selections_match_skip(Vis*, const char *keys, const Arg *arg)
static const char *selections_rotate(Vis*, const char *keys, const Arg *arg);
/* remove leading and trailing white spaces from selections */
static const char *selections_trim(Vis*, const char *keys, const Arg *arg);
-/* save active selections to register */
+/* save active selections to mark */
static const char *selections_save(Vis*, const char *keys, const Arg *arg);
-/* restore selections from register */
+/* restore selections from mark */
static const char *selections_restore(Vis*, const char *keys, const Arg *arg);
-/* union selections */
+/* union selections from mark */
static const char *selections_union(Vis*, const char *keys, const Arg *arg);
-/* intersect selections */
+/* intersect selections from mark */
static const char *selections_intersect(Vis*, const char *keys, const Arg *arg);
/* perform complement of current active selections */
static const char *selections_complement(Vis*, const char *keys, const Arg *arg);
-/* subtract selections from register */
+/* subtract selections from mark */
static const char *selections_minus(Vis*, const char *keys, const Arg *arg);
-/* pairwise combine selections */
+/* pairwise combine selections from mark */
static const char *selections_combine(Vis*, const char *keys, const Arg *arg);
static Filerange combine_union(const Filerange*, const Filerange*);
static Filerange combine_intersect(const Filerange*, const Filerange*);