summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.adoc2
-rw-r--r--examples/example03_post_status.cpp2
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<string_view>{"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<string_view>{"Nice", "not nice"}},
{"poll[expires_in]", to_string(poll_seconds)}
};