summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/connection.hpp1
-rw-r--r--include/mastodonpp.hpp8
2 files changed, 5 insertions, 4 deletions
diff --git a/include/connection.hpp b/include/connection.hpp
index 2469738..09a3945 100644
--- a/include/connection.hpp
+++ b/include/connection.hpp
@@ -83,6 +83,7 @@ public:
/*!
* @brief Make a HTTP GET call.
+ *
* Example:
* @code
* auto answer{connection.get("/api/v1/instance")};
diff --git a/include/mastodonpp.hpp b/include/mastodonpp.hpp
index 85f1214..eecac21 100644
--- a/include/mastodonpp.hpp
+++ b/include/mastodonpp.hpp
@@ -74,17 +74,17 @@
* @section exceptions Exceptions
*
* Any unrecoverable libcurl error will be thrown as a
- * mastodonpp::CURLException. Network errors will **not** be thrown, but
- * reported via the return value.
+ * mastodonpp::CURLException. Network errors will not be thrown, but reported
+ * via the return value.
*
* @section thread_safety Thread safety
*
* The first time you construct an @link mastodonpp::Instance Instance @endlink
- * or @link mastodonpp::Connection Connection @endlink, [curl_global_init()]
+ * or @link mastodonpp::Connection Connection @endlink, [curl_global_init(3)]
* (https://curl.haxx.se/libcurl/c/curl_global_init.html) is called. When the
* last @link mastodonpp::Instance Instance @endlink or @link
* mastodonpp::Connection Connection @endlink is destroyed,
- * [curl_global_cleanup()]
+ * [curl_global_cleanup(3)]
* (https://curl.haxx.se/libcurl/c/curl_global_cleanup.html) is called. Both
* are not thread safe.
*