summaryrefslogtreecommitdiff
path: root/sed/sed.h
diff options
context:
space:
mode:
Diffstat (limited to 'sed/sed.h')
-rw-r--r--sed/sed.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sed/sed.h b/sed/sed.h
index 0d056e3..7510b0a 100644
--- a/sed/sed.h
+++ b/sed/sed.h
@@ -1,5 +1,5 @@
/* GNU SED, a batch stream editor.
- Copyright (C) 1989-2016 Free Software Foundation, Inc.
+ Copyright (C) 1989-2017 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -28,7 +28,7 @@
/* Struct vector is used to describe a compiled sed program. */
struct vector {
struct sed_cmd *v; /* a dynamically allocated array */
- size_t v_allocated; /* ... number slots allocated */
+ size_t v_allocated; /* ... number of slots allocated */
size_t v_length; /* ... number of slots in use */
};