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)} };