From 7432c6763d92fbd91b3d1a4f9b2f019672c74e78 Mon Sep 17 00:00:00 2001 From: Eric Mertens Date: Tue, 13 Feb 2024 15:10:08 -0800 Subject: [PATCH] rearrange Toml documentation sections --- src/Toml.hs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Toml.hs b/src/Toml.hs index 97aed61..3567822 100644 --- a/src/Toml.hs +++ b/src/Toml.hs @@ -20,16 +20,14 @@ module Toml ( Value(..), -- * Parsing + decode, + Result(..), parse, -- * Printing + encode, prettyToml, DocClass(..), - - -- * Serialization - decode, - encode, - Result(..), ) where import Toml.FromValue (FromValue (fromValue), Result(..))