Skip to content

Commit 1df16fe

Browse files
authored
docs: fix typos in include (#5473)
1 parent 01f1bb4 commit 1df16fe

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

include/Make/Doxyfile_arch_html.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ UML_LOOK = NO
16831683
# the class node. If there are many fields or methods and many nodes the
16841684
# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS
16851685
# threshold limits the number of items for each type to make the size more
1686-
# managable. Set this to 0 for no limit. Note that the threshold may be
1686+
# manageable. Set this to 0 for no limit. Note that the threshold may be
16871687
# exceeded by 50% before the limit is enforced.
16881688

16891689
UML_LIMIT_NUM_FIELDS = 10

include/Make/Doxyfile_arch_latex.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ UML_LOOK = NO
16831683
# the class node. If there are many fields or methods and many nodes the
16841684
# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS
16851685
# threshold limits the number of items for each type to make the size more
1686-
# managable. Set this to 0 for no limit. Note that the threshold may be
1686+
# manageable. Set this to 0 for no limit. Note that the threshold may be
16871687
# exceeded by 50% before the limit is enforced.
16881688

16891689
UML_LIMIT_NUM_FIELDS = 10

include/grass/gis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ struct G_3dview {
504504
float from_to[2][3]; /* eye position & lookat position */
505505
float fov; /* field of view */
506506
float twist; /* right_hand rotation about from_to */
507-
float exag; /* terrain elevation exageration */
507+
float exag; /* terrain elevation exaggeration */
508508
int mesh_freq; /* cells per grid line */
509509
int poly_freq; /* cells per polygon */
510510
int display_type; /* 1 for mesh, 2 for poly, 3 for both */

include/grass/iostream/embuffer.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ class em_buffer {
341341
// (pow(arity,level-1)*basesize); the <nextstream> pointer of buffer
342342
// is set to point to the argument stream; (in this way no stream
343343
// copying is done, just one pointer copy). The user should be aware
344-
// the the argument stream is 'lost' - that is a stream cannot be
344+
// the argument stream is 'lost' - that is a stream which cannot be
345345
// inserted repeatedly into many buffers because this would lead to
346346
// several buffers pointing to the same stream.
347347

@@ -1068,10 +1068,10 @@ long em_buffer<T, Key>::insert(T *a, long n)
10681068
10691069
the <nextstream> pointer of buffer is set to point to the argument
10701070
stream; (in this way no stream copying is done, just one pointer
1071-
copy). The user should be aware the the argument stream is 'lost' -
1072-
that is a stream cannot be inserted repeatedly into many buffers
1073-
because this would lead to several buffers pointing to the same
1074-
stream.
1071+
copy). The user should be aware the argument stream is 'lost' -
1072+
that is a stream which cannot be inserted repeatedly into many
1073+
buffers because this would lead to several buffers pointing to the
1074+
same stream.
10751075
10761076
stream is assume stream is sorted; bos = how many elements must be
10771077
skipped (were deleted) from the beginning of stream;

include/grass/iostream/imbuffer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class im_buffer {
196196
// sort the buffer (recursively)
197197
void sort_rec(unsigned long start, unsigned long end);
198198

199-
// partition the buffer and return the the position of the pivot
199+
// partition the buffer and return the position of the pivot
200200
unsigned long partition(unsigned long start, unsigned long end);
201201
};
202202

@@ -286,7 +286,7 @@ void im_buffer<T>::sort_rec(unsigned long start, unsigned long end)
286286
}
287287

288288
/************************************************************/
289-
// partition the buffer in place and return the the position of the
289+
// partition the buffer in place and return the position of the
290290
// pivot
291291
template <class T>
292292
unsigned long im_buffer<T>::partition(unsigned long start, unsigned long end)

include/grass/vect/dig_macros.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
\brief Macros for diglib (part of vector library
55
*/
66

7-
/* ALIVE MACROS take a pointer the the structure in question */
7+
/* ALIVE MACROS take a pointer of the structure in question */
88
/* and return 0 or non-zero */
99
#define LINE_ALIVE(p) ((p)->type < 16) /* assume DEAD are .GT. 1 << 3 */
1010
#define NODE_ALIVE(p) ((p)->alive) /* simple enuf */

include/grass/vect/dig_structs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ struct Map_info {
13061306
/*!
13071307
\brief Support files were updated
13081308
1309-
Non-zero code to indicate that supoort file were updated
1309+
Non-zero code to indicate that support files were updated
13101310
*/
13111311
int support_updated;
13121312

0 commit comments

Comments
 (0)