From 1d3ceb9b2dcba57ac4a1253abcc1157466a6e3b0 Mon Sep 17 00:00:00 2001 From: Bram Date: Mon, 18 Dec 2023 17:30:52 +0100 Subject: [PATCH] Fix typos --- src/Internal/Config/Text.elm | 4 ++-- src/Internal/Tools/Timestamp.elm | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Internal/Config/Text.elm b/src/Internal/Config/Text.elm index d0c87f9..0a7bd62 100644 --- a/src/Internal/Config/Text.elm +++ b/src/Internal/Config/Text.elm @@ -102,14 +102,14 @@ versionsFailedToDecode = "Matrix API returned an invalid version list" -{-| Logs when the Vault remembers how to communicate with the Matrix homeserver +{-| Logs when the Vault remembers how to communicate with the Matrix homeserver. -} versionsFoundLocally : String versionsFoundLocally = "Found locally cached version list" -{-| Logs when the Matrix API has returned how to best communicate with them +{-| Logs when the Matrix API has returned how to best communicate with them. -} versionsReceived : String versionsReceived = diff --git a/src/Internal/Tools/Timestamp.elm b/src/Internal/Tools/Timestamp.elm index 8eddec6..a0ed35c 100644 --- a/src/Internal/Tools/Timestamp.elm +++ b/src/Internal/Tools/Timestamp.elm @@ -3,11 +3,11 @@ module Internal.Tools.Timestamp exposing , encode, decoder ) -{-| The Timestamp module is a simplification of the Timetsamp as delivered by +{-| The Timestamp module is a simplification of the Timestamp as delivered by elm/time. This module offers ways to work with the timestamp in meaningful ways. -## Timetstamp +## Timestamp @docs Timestamp @@ -23,7 +23,7 @@ import Json.Encode as E import Time -{-| The Timetstamp data type representing a moment in time. +{-| The Timestamp data type representing a moment in time. -} type alias Timestamp = Time.Posix