Fix typos in the linker's documentation of the --enable-non-contiguous-regions option.
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 698b3ea..7d42a3e 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2023-04-12  Nick Clifton  <nickc@redhat.com>
+
+	* ld.texi (--enable-non-contiguous-regions): Fix typos in script
+	example.
+
 2023-03-15  Nick Clifton  <nickc@redhat.com>
 
 	PR 30187
diff --git a/ld/ld.texi b/ld/ld.texi
index fe4ec82..1f0478b 100644
--- a/ld/ld.texi
+++ b/ld/ld.texi
@@ -489,9 +489,9 @@
 
 @smallexample
   MEMORY @{
-    MEM1 (rwx) : ORIGIN : 0x1000, LENGTH = 0x14
-    MEM2 (rwx) : ORIGIN : 0x1000, LENGTH = 0x40
-    MEM3 (rwx) : ORIGIN : 0x2000, LENGTH = 0x40
+    MEM1 (rwx) : ORIGIN = 0x1000, LENGTH = 0x14
+    MEM2 (rwx) : ORIGIN = 0x1000, LENGTH = 0x40
+    MEM3 (rwx) : ORIGIN = 0x2000, LENGTH = 0x40
   @}
   SECTIONS @{
     mem1 : @{ *(.data.*); @} > MEM1