From 18de12c762df2ed5a183bb0119182eb6ec0cc8b1 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 11 Jan 2020 14:13:55 +0100 Subject: [PATCH] Typo. --- README.adoc | 2 +- examples/example03_post_status.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index ee9288b..186f9c0 100644 --- a/README.adoc +++ b/README.adoc @@ -58,7 +58,7 @@ int main() const mastodonpp::parametermap parameters { - {"status", "How is the wheather?"}, + {"status", "How is the weather?"}, {"poll[options]", vector{"Nice", "not nice"}}, {"poll[expires_in]", "86400"} }; diff --git a/examples/example03_post_status.cpp b/examples/example03_post_status.cpp index db5545b..f2e473a 100644 --- a/examples/example03_post_status.cpp +++ b/examples/example03_post_status.cpp @@ -49,7 +49,7 @@ int main(int argc, char *argv[]) constexpr auto poll_seconds{60 * 60 * 24 * 2}; // 2 days. const masto::parametermap parameters { - {"status", "How is the wheather?"}, + {"status", "How is the weather?"}, {"poll[options]", vector{"Nice", "not nice"}}, {"poll[expires_in]", to_string(poll_seconds)} };