diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 68e44250b64..b78603b0c71 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -2792,7 +2792,7 @@ include_dir 'conf.d'
The synchronous standby will be the first standby named in this list
that is both currently connected and streaming data in real-time
(as shown by a state of streaming in the
-
+
pg_stat_replication> view).
Other standby servers appearing later in this list represent potential
synchronous standbys.
@@ -2962,7 +2962,7 @@ include_dir 'conf.d'
Specifies the minimum frequency for the WAL receiver
process on the standby to send information about replication progress
to the primary or upstream standby, where it can be seen using the
-
+
pg_stat_replication> view. The standby will report
the last transaction log position it has written, the last position it
has flushed to disk, and the last position it has applied.
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml
index 4a44271484b..f1819b0bf70 100644
--- a/doc/src/sgml/high-availability.sgml
+++ b/doc/src/sgml/high-availability.sgml
@@ -861,7 +861,7 @@ primary_conninfo = 'host=192.168.1.50 port=5432 user=foo password=foopass'
You can retrieve a list of WAL sender processes via the
-
+
pg_stat_replication> view. Large differences between
pg_current_xlog_location> and sent_location> field
might indicate that the master server is under heavy load, while
diff --git a/doc/src/sgml/release-9.1.sgml b/doc/src/sgml/release-9.1.sgml
index e1b1f3aab21..c4436713994 100644
--- a/doc/src/sgml/release-9.1.sgml
+++ b/doc/src/sgml/release-9.1.sgml
@@ -9667,7 +9667,7 @@ Branch: REL9_0_STABLE [9d6af7367] 2015-08-15 11:02:34 -0400
Add system view pg_stat_replication>
+ linkend="pg-stat-replication-view">pg_stat_replication>
which displays activity of WAL> sender processes (Itagaki
Takahiro, Simon Riggs)
diff --git a/doc/src/sgml/release-9.5.sgml b/doc/src/sgml/release-9.5.sgml
index b6f16831ef5..931332abf7f 100644
--- a/doc/src/sgml/release-9.5.sgml
+++ b/doc/src/sgml/release-9.5.sgml
@@ -6911,7 +6911,7 @@ max_wal_size = (3 * checkpoint_segments) * 16MB
-->
The pg_stat_replication>
+ linkend="pg-stat-replication-view">pg_stat_replication>
system view's sent> field is now NULL, not zero, when
it has no valid value (Magnus Hagander)