diff --git a/README.md b/README.md
index a91390b..37de80f 100644
--- a/README.md
+++ b/README.md
@@ -56,9 +56,9 @@ The following file formats are currently supported:
| Format | Extension | Import* | Loader | Parser | Factory |
|-------------|-------------|--------------------|---------------------------|---------------------------------|-------------------------|
| _any below_ | _any below_ | `mirage` | `loadConfig`** | _(N/A)_ | |
-| JSON | .json | `mirage.json` | `loadJsonConfig` | `parseJsonConfig`*** | `JsonConfigFactory` |
-| Java | .properties | `mirage.java` | `loadJavaProperties` | `parseJavaProperties` | `JavaPropertiesFactory` |
| INI | .ini | `mirage.ini` | `loadIniConfig` | `parseIniConfig` | `IniConfigFactory` |
+| Java | .properties | `mirage.java` | `loadJavaProperties` | `parseJavaProperties` | `JavaPropertiesFactory` |
+| JSON | .json | `mirage.json` | `loadJsonConfig` | `parseJsonConfig`*** | `JsonConfigFactory` |
\* _Any loader or parser can be imported from the `mirage` package since they are all publicly imported._
\*\* _Loads files based on their extension. If the file does not use one of the extensions in the table, you must use a specific loader._