diff --git a/README.md b/README.md index 68af273..2a3281b 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ If you use a debug build, you get more verbose error messages. * [x] Handle HTTP statuses 301, 302, 307 and 308 * [x] Support registering as an application * Version 0.4.0 - * [x] Handle X-RateLimit header + * [x] Make HTTP header available * [x] Streaming API * Later * [ ] Asynchronous I/O diff --git a/src/examples/example4_update_credentials.cpp b/src/examples/example4_update_credentials.cpp index f19174f..10cffa6 100644 --- a/src/examples/example4_update_credentials.cpp +++ b/src/examples/example4_update_credentials.cpp @@ -1,4 +1,5 @@ /* This file is part of mastodon-cpp. + * Updates your name, description and avatar. */ #include diff --git a/src/examples/example5_follow_unfollow.cpp b/src/examples/example5_follow_unfollow.cpp index cad3cc9..df6034a 100644 --- a/src/examples/example5_follow_unfollow.cpp +++ b/src/examples/example5_follow_unfollow.cpp @@ -1,4 +1,5 @@ /* This file is part of mastodon-cpp. + * Follow someone, then unfollow. */ #include diff --git a/src/examples/example6_toot_delete-toot.cpp b/src/examples/example6_toot_delete-toot.cpp index 7dff7de..f8bed9a 100644 --- a/src/examples/example6_toot_delete-toot.cpp +++ b/src/examples/example6_toot_delete-toot.cpp @@ -1,4 +1,5 @@ /* This file is part of mastodon-cpp. + * Post a status, then delete it. */ #include diff --git a/src/examples/example7_register_app.cpp b/src/examples/example7_register_app.cpp index cc23c4e..ff40366 100644 --- a/src/examples/example7_register_app.cpp +++ b/src/examples/example7_register_app.cpp @@ -1,4 +1,5 @@ /* This file is part of mastodon-cpp. + * Register as an application. */ #include diff --git a/src/examples/example9_streaming_api.cpp b/src/examples/example9_streaming_api.cpp index 7a4dbf9..f05372e 100644 --- a/src/examples/example9_streaming_api.cpp +++ b/src/examples/example9_streaming_api.cpp @@ -1,9 +1,7 @@ /* This file is part of mastodon-cpp. - * How to use the streaming API + * Streaming API example */ -/* This file is part of mastodon-cpp. - */ #include #include