public inbox for libabigail@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] abg-diff-utils: fix typo in comments
@ 2022-10-16  7:02 Xiaole He
  2022-10-17 14:15 ` Dodji Seketeli
  0 siblings, 1 reply; 3+ messages in thread
From: Xiaole He @ 2022-10-16  7:02 UTC (permalink / raw)
  To: libabigail; +Cc: Xiaole He, Xiaole He

Fix typo in comments, from 'pased' to 'passed'.

        * src/abg-diff-utils.h: fix typo in comments

Signed-off-by: Xiaole He <hexiaole@kylinos.cn>
---
 include/abg-diff-utils.h | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/include/abg-diff-utils.h b/include/abg-diff-utils.h
index 5e124737..b0e96b41 100644
--- a/include/abg-diff-utils.h
+++ b/include/abg-diff-utils.h
@@ -803,7 +803,7 @@ struct deep_ptr_eq_functor
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param k the number of the diagonal on which we want to find the
@@ -942,7 +942,7 @@ end_of_fr_d_path_in_k(int k, int d,
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param k the number of the diagonal on which we want to find the
@@ -1116,7 +1116,7 @@ is_match_point(RandomAccessOutputIterator a_begin,
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param a_begin an iterator pointing to the begining of sequence A.
@@ -1308,7 +1308,7 @@ print_snake(RandomAccessOutputIterator a_begin,
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param a the first sequence we care about.
@@ -1444,7 +1444,7 @@ snake_end_points(const snake& s, point&, point&);
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param a_base the iterator to the base of the first sequence.
@@ -1653,7 +1653,7 @@ compute_diff(RandomAccessOutputIterator a_base,
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param a_start an iterator to the beginning of the first sequence
@@ -1719,7 +1719,7 @@ compute_diff(RandomAccessOutputIterator a_begin,
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param a_base the iterator to the base of the first sequence.
@@ -1779,7 +1779,7 @@ compute_diff(RandomAccessOutputIterator a_base,
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param a_start an iterator to the beginning of the first sequence
@@ -1879,7 +1879,7 @@ compute_diff(RandomAccessOutputIterator a_begin,
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param a_base the iterator to the base of the first sequence.
@@ -1935,7 +1935,7 @@ compute_diff(RandomAccessOutputIterator a_base,
 /// call operator member returning a boolean and taking two arguments
 /// that must be of the same type as the one pointed to by the @ref
 /// RandomAccessOutputIterator template parameter. This functor is
-/// used to compare the elements referred to by the iterators pased in
+/// used to compare the elements referred to by the iterators passed in
 /// argument to this function.
 ///
 /// @param a_start an iterator to the beginning of the first sequence
-- 
2.27.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] abg-diff-utils: fix typo in comments
  2022-10-16  7:02 [PATCH] abg-diff-utils: fix typo in comments Xiaole He
@ 2022-10-17 14:15 ` Dodji Seketeli
  2022-10-18  3:25   ` Xiaole He
  0 siblings, 1 reply; 3+ messages in thread
From: Dodji Seketeli @ 2022-10-17 14:15 UTC (permalink / raw)
  To: Xiaole He via Libabigail; +Cc: Xiaole He, Xiaole He

Hello Xiaole,

Xiaole He via Libabigail <libabigail@sourceware.org> a écrit:

> Fix typo in comments, from 'pased' to 'passed'.
>
>         * src/abg-diff-utils.h: fix typo in comments
>
> Signed-off-by: Xiaole He <hexiaole@kylinos.cn>

Applied to the master branch, thanks!

[...]

Cheers,

-- 
		Dodji

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re:Re: [PATCH] abg-diff-utils: fix typo in comments
  2022-10-17 14:15 ` Dodji Seketeli
@ 2022-10-18  3:25   ` Xiaole He
  0 siblings, 0 replies; 3+ messages in thread
From: Xiaole He @ 2022-10-18  3:25 UTC (permalink / raw)
  To: Dodji Seketeli; +Cc: Xiaole He via Libabigail, Xiaole He

[-- Attachment #1: Type: text/plain, Size: 434 bytes --]

Thank you for reviewing.

















At 2022-10-17 22:15:09, "Dodji Seketeli" <dodji@seketeli.org> wrote:
>Hello Xiaole,
>
>Xiaole He via Libabigail <libabigail@sourceware.org> a écrit:
>
>> Fix typo in comments, from 'pased' to 'passed'.
>>
>>         * src/abg-diff-utils.h: fix typo in comments
>>
>> Signed-off-by: Xiaole He <hexiaole@kylinos.cn>
>
>Applied to the master branch, thanks!
>
>[...]
>
>Cheers,
>
>-- 
>		Dodji

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-10-18  3:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-16  7:02 [PATCH] abg-diff-utils: fix typo in comments Xiaole He
2022-10-17 14:15 ` Dodji Seketeli
2022-10-18  3:25   ` Xiaole He

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).