diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-15 14:22:11 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-15 14:22:11 -0400 |
| commit | f51acef40e8297d7bd41b774413aa8331ca946ed (patch) | |
| tree | 56aa02541d60beb3ece496fed2c11afd3ae942f3 /examples/ini | |
| parent | 7a2653501310825e02d99d51fb4b9f1aacc75214 (diff) | |
Overhaul of Path so it uses root and array of components instead of
stringly typed
Diffstat (limited to 'examples/ini')
| -rw-r--r-- | examples/ini/ini.tm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ini/ini.tm b/examples/ini/ini.tm index 9b27e8cb..1c50ac37 100644 --- a/examples/ini/ini.tm +++ b/examples/ini/ini.tm @@ -7,7 +7,7 @@ _HELP := " " func parse_ini(path:Path -> {Text,{Text,Text}}): - text := path:read() or exit("Could not read INI file: $\[31;1]$(path.text)$\[]") + text := path:read() or exit("Could not read INI file: $\[31;1]$(path)$\[]") sections := @{:Text,@{Text,Text}} current_section := @{:Text,Text} |
