Hey,

I was translating logicaldecoding.sgml, and I saw this sentence:

There are multiple required streaming callbacks
(<function>stream_start_cb</function>, <function>stream_stop_cb</function>,
<function>stream_abort_cb</function>, <function>stream_commit_cb</function>
and <function>stream_change_cb</function>) and two optional callbacks
(<function>stream_message_cb</function>) and
(<function>stream_truncate_cb</function>).

The two last sets of parentheses seem really weird to me. Looks like it
should be:
(<function>stream_message_cb</function> and
<function>stream_truncate_cb</function>).

Really tiny patch attached to fix this if it really is wrong, and anyone
cares enough to fix it :)

Regards.


-- 
Guillaume.
diff --git a/doc/src/sgml/logicaldecoding.sgml b/doc/src/sgml/logicaldecoding.sgml
index 1765ea6c87..f2d3f1c6a8 100644
--- a/doc/src/sgml/logicaldecoding.sgml
+++ b/doc/src/sgml/logicaldecoding.sgml
@@ -1173,7 +1173,7 @@ OutputPluginWrite(ctx, true);
     (<function>stream_start_cb</function>, <function>stream_stop_cb</function>,
     <function>stream_abort_cb</function>, <function>stream_commit_cb</function>
     and <function>stream_change_cb</function>) and two optional callbacks
-    (<function>stream_message_cb</function>) and (<function>stream_truncate_cb</function>).
+    (<function>stream_message_cb</function> and <function>stream_truncate_cb</function>).
    </para>
 
    <para>

Reply via email to