Re: [HACKERS] copy & pastos in atomics.h comments

2014-09-26 Thread Andres Freund
On 2014-09-26 09:18:08 +0200, Erik Rijkers wrote:
> the the (6x)

Gah. I thought I'd fixed the one Heikki had noticed, but apparently it
was a independent one. Thanks for watching/fixing. Pushed.

Greetings,

Andres Freund

-- 
 Andres Freund http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


[HACKERS] copy & pastos in atomics.h comments

2014-09-26 Thread Erik Rijkers
the the (6x)


--- src/include/port/atomics.h.orig	2014-09-26 09:06:10.553635053 +0200
+++ src/include/port/atomics.h	2014-09-26 09:07:14.763579885 +0200
@@ -346,7 +346,7 @@
 /*
  * pg_atomic_fetch_add_u32 - atomically add to variable
  *
- * Returns the the value of ptr before the arithmetic operation.
+ * Returns the value of ptr before the arithmetic operation.
  *
  * Full barrier semantics.
  */
@@ -360,7 +360,7 @@
 /*
  * pg_atomic_fetch_sub_u32 - atomically subtract from variable
  *
- * Returns the the value of ptr before the arithmetic operation. Note that
+ * Returns the value of ptr before the arithmetic operation. Note that
  * sub_ may not be INT_MIN due to platform limitations.
  *
  * Full barrier semantics.
@@ -376,7 +376,7 @@
 /*
  * pg_atomic_fetch_and_u32 - atomically bit-and and_ with variable
  *
- * Returns the the value of ptr before the arithmetic operation.
+ * Returns the value of ptr before the arithmetic operation.
  *
  * Full barrier semantics.
  */
@@ -390,7 +390,7 @@
 /*
  * pg_atomic_fetch_or_u32 - atomically bit-or or_ with variable
  *
- * Returns the the value of ptr before the arithmetic operation.
+ * Returns the value of ptr before the arithmetic operation.
  *
  * Full barrier semantics.
  */
@@ -404,7 +404,7 @@
 /*
  * pg_atomic_add_fetch_u32 - atomically add to variable
  *
- * Returns the the value of ptr after the arithmetic operation.
+ * Returns the value of ptr after the arithmetic operation.
  *
  * Full barrier semantics.
  */
@@ -418,7 +418,7 @@
 /*
  * pg_atomic_sub_fetch_u32 - atomically subtract from variable
  *
- * Returns the the value of ptr after the arithmetic operation. Note that sub_
+ * Returns the value of ptr after the arithmetic operation. Note that sub_
  * may not be INT_MIN due to platform limitations.
  *
  * Full barrier semantics.
-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers