From ece35c8f882fe7e1762378c689f3f8acfea86dc9 Mon Sep 17 00:00:00 2001 From: Venkatesh Dayananda Date: Thu, 24 Feb 2022 12:57:07 +0530 Subject: [PATCH] Fix typos in Readme (#27) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e242ad..88a3812 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ using Inifile # load code into current session #### Create IniFile ```julia -ini = IniFile() +ini = Inifile() ``` #### Get defaults & sections of an IniFile @@ -37,7 +37,7 @@ set(ini, "section", "key", value) #### Parse a `*.ini` file ```julia -ini = read(IniFile(), "file.ini") +ini = read(Inifile(), "file.ini") ``` #### Write out a `*.ini` file