diff --git a/releasenotes/notes/fix-physical-memory-arm64-957755f6cd91ad85.yaml b/releasenotes/notes/fix-physical-memory-arm64-957755f6cd91ad85.yaml
index 5601d97b9..e7b2ec2b4 100644
--- a/releasenotes/notes/fix-physical-memory-arm64-957755f6cd91ad85.yaml
+++ b/releasenotes/notes/fix-physical-memory-arm64-957755f6cd91ad85.yaml
@@ -1,6 +1,5 @@
 ---
 fixes:
   - |
-    Fixes issue that 0 physical memory calculated for aarch64. Since output
-    for aarch64 `lshw -quiet -json` is a bit different from x86_64. This fix
-    is compatible with both x86_64 and arm64.
+    Fixes detection of physical memory amount on AArch64 that was caused by
+    different output of the ``lshw`` utility.
diff --git a/releasenotes/notes/get-holder-disks-with-nvme-7d5fa75df2fd5904.yaml b/releasenotes/notes/get-holder-disks-with-nvme-7d5fa75df2fd5904.yaml
index 9974d1dda..f5b3f918d 100644
--- a/releasenotes/notes/get-holder-disks-with-nvme-7d5fa75df2fd5904.yaml
+++ b/releasenotes/notes/get-holder-disks-with-nvme-7d5fa75df2fd5904.yaml
@@ -1,5 +1,5 @@
 ---
 fixes:
-    - |
-        Fixes an issue where md devices disk holders could not be listed
-        correctly if they were nvme drives.
+  - |
+    Fixes an issue where md devices disk holders could not be listed
+    correctly if they were NVMe drives.
diff --git a/releasenotes/notes/softraid-creation-on-nvme-a2fd4c531d200904.yaml b/releasenotes/notes/softraid-creation-on-nvme-a2fd4c531d200904.yaml
index dd4453c87..dbac0a59b 100644
--- a/releasenotes/notes/softraid-creation-on-nvme-a2fd4c531d200904.yaml
+++ b/releasenotes/notes/softraid-creation-on-nvme-a2fd4c531d200904.yaml
@@ -1,3 +1,3 @@
 ---
 features:
-  - Adds software raid creation support on nvme drives.
+  - Adds support for creating software RAID on NVMe drives.
diff --git a/releasenotes/notes/softraid-msdos-gpt-alternative.yaml b/releasenotes/notes/softraid-msdos-gpt-alternative.yaml
index be302d65a..2a1eb83e2 100644
--- a/releasenotes/notes/softraid-msdos-gpt-alternative.yaml
+++ b/releasenotes/notes/softraid-msdos-gpt-alternative.yaml
@@ -1,4 +1,4 @@
 ---
 features:
-  - Adds the ability to specify the partition table type when creating raid.
-    When not specified, the type is set to msdos.
+  - Adds the ability to specify the partition table type when creating RAID.
+    When not specified, the type is set to ``msdos`` (MBR).
diff --git a/releasenotes/notes/softraid-partitioning-refactor-104b817c3bdc73e3.yaml b/releasenotes/notes/softraid-partitioning-refactor-104b817c3bdc73e3.yaml
index c4c43b2e9..bbb2b7f1f 100644
--- a/releasenotes/notes/softraid-partitioning-refactor-104b817c3bdc73e3.yaml
+++ b/releasenotes/notes/softraid-partitioning-refactor-104b817c3bdc73e3.yaml
@@ -1,11 +1,11 @@
 ---
 fixes:
-  - Fixes an issue with the psize conversion when creating software raid. From
-    the documentation,
-    https://docs.openstack.org/ironic/latest/admin/raid.html#target-raid-configuration,
-    size_gb unit is GiB but parted default unit is MB.
-  - Fixes a RAID creation issue when there are several logical drives, with
-    more than one having its size specified (i.e not 'MAX').
-    https://storyboard.openstack.org/#!/story/2006352
-  - Fixes a RAID creation issue when a logical drive with size 'MAX' is not
-    last in the list of logical drives.
+  - Fixes size conversion when creating software RAID with ``size_gb``
+    provided. From the `RAID documentation
+    <https://docs.openstack.org/ironic/latest/admin/raid.html#target-raid-configuration>`_
+    ``size_gb`` unit is GiB but parted defaults to MB.
+  - Fixes creating software RAID when several logical drives have a size
+    specified (i.e not 'MAX'). See `story 2006352
+    <https://storyboard.openstack.org/#!/story/2006352>`_.
+  - Fixes creating software RAID when a logical drive with size 'MAX' is not
+    the last in the list of logical drives.