Fix broken markup, and copy-edit a bit.
authorTom Lane
Tue, 11 Aug 2015 14:46:51 +0000 (10:46 -0400)
committerTom Lane
Tue, 11 Aug 2015 14:46:51 +0000 (10:46 -0400)
Fix docs build failure introduced by commit 6fcd88511f8e69e3.
I failed to resist the temptation to rearrange the description of
pg_create_physical_replication_slot(), too.

doc/src/sgml/func.sgml

index b1df55d7f6295b532898551c6dc16d8f365cabab..249741e992fb486b6f2491a36c8c9c8662cf8a9d 100644 (file)
@@ -17211,21 +17211,22 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
         
          pg_create_physical_replication_slot
         
-        pg_create_physical_replication_slot(slot_name nameimmediately_reserve boolean )
+        pg_create_physical_replication_slot(slot_name name immediately_reserve boolean )
        
        
         (slot_name namexlog_position pg_lsn)
        
        
         Creates a new physical replication slot named
-        slot_name. Streaming changes from a physical slot
-        is only possible with the streaming-replication protocol - see 
-        linkend="protocol-replication">. Corresponds to the replication protocol
-        command CREATE_REPLICATION_SLOT ... PHYSICAL. The optional
-        second parameter,  when true, specifies that the LSN
-        for this replication slot be reserved immediately; the 
-        is otherwise reserved on first connection from a streaming replication
-        client.
+        slot_name. The optional second parameter,
+        when true, specifies that the LSN for this
+        replication slot be reserved immediately; otherwise
+        the LSN is reserved on first connection from a streaming
+        replication client. Streaming changes from a physical slot is only
+        possible with the streaming-replication protocol —
+        see . This function corresponds
+        to the replication protocol command CREATE_REPLICATION_SLOT
+        ... PHYSICAL.