diff --git a/docs/extensions/info-xml.md b/docs/extensions/info-xml.md
index 7fa82757d4184179750403676cb176df2632fd60..2c60c13dc8c5f59f647db15608d6f31b2bcfd7e4 100644
--- a/docs/extensions/info-xml.md
+++ b/docs/extensions/info-xml.md
@@ -81,14 +81,14 @@ Elements acceptable within `<civix>`
 ### `<classloader>` {:#classloader}
 
 * Containing element: [`<extension>`](#extension)
-* Description: This specifies what classes should be added to the Composer ClassLoader
+* Description: Specifies the namespace and file-path of classes to add to the classloader.
 * Contains: elements
 
 Elements acceptable within `<classloader>`
 
 | Element | Acceptable instances | 
 | -- | -- |
-| [`<psr4>`](#psr4) | Specifies the path and namespace to load into the class loader as per PHP PSR-4 Standard |
+| [`<psr4>`](#psr4) | 1+ |
 
 ### `<comments>` {:#comments}
 
@@ -250,15 +250,15 @@ Elements acceptable within `<maintainer>`
 ### `<psr4>` {:#psr4}
 
 * Containing element: [`<classloader>`](#classloader)
-* Description: Specifies the Name space and patho of classes to add the Composer Classloader
+* Description: Specifies the namespace and file-path of classes to add to the classloader in PSR-4 Standard.
 * Contains: nothing &mdash; should be empty
 
 Attributes acceptable for `<psr4>`
 
 | Attribute | Contains |  Purpose |
 | -- | -- | -- |
-| `prefix` | text | Namespace of classes to load |
-| `path` | text | Directory path to classes to load |
+| `prefix` | text | Namespace of classes to add |
+| `path` | text | Directory path to classes to add |
 
 
 ### `<releaseDate>` {:#releaseDate}