From df35f9076da993a15b528e84cf9ed7162a7a2f37 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Thu, 13 Oct 2022 21:38:58 +0300 Subject: [PATCH] Sort format table alphabetically --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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._