typos
authorChristian Grothoff <christian@grothoff.org>
Fri, 19 Apr 2019 09:52:01 +0000 (11:52 +0200)
committerChristian Grothoff <christian@grothoff.org>
Fri, 19 Apr 2019 09:52:01 +0000 (11:52 +0200)
src/include/gnunet_rps_service.h
src/rps/gnunet-service-rps.c

index c88e75cc760d7f7890e06090749378fdacad18cb..b669c55efb812d216d77ed75e1784a42470118a9 100644 (file)
@@ -87,7 +87,7 @@ typedef void (* GNUNET_RPS_NotifyReadySingleInfoCB) (void *cls,
  * @param cfg configuration to use
  * @return handle to the rps service
  */
-  struct GNUNET_RPS_Handle *
+struct GNUNET_RPS_Handle *
 GNUNET_RPS_connect (const struct GNUNET_CONFIGURATION_Handle *cfg);
 
 
@@ -95,7 +95,7 @@ GNUNET_RPS_connect (const struct GNUNET_CONFIGURATION_Handle *cfg);
  * @brief Start a sub with the given shared value
  *
  * @param h Handle to rps
- * @param shared_value The shared value that defines the members of the sub (-gorup)
+ * @param shared_value The shared value that defines the members of the sub (-group)
  */
 void
 GNUNET_RPS_sub_start (struct GNUNET_RPS_Handle *h,
@@ -106,7 +106,7 @@ GNUNET_RPS_sub_start (struct GNUNET_RPS_Handle *h,
  * @brief Stop a sub with the given shared value
  *
  * @param h Handle to rps
- * @param shared_value The shared value that defines the members of the sub (-gorup)
+ * @param shared_value The shared value that defines the members of the sub (-group)
  */
 void
 GNUNET_RPS_sub_stop (struct GNUNET_RPS_Handle *h,
@@ -127,7 +127,7 @@ GNUNET_RPS_sub_stop (struct GNUNET_RPS_Handle *h,
  * @param cls a closure that will be given to the callback
  * @return handle to this request
  */
-  struct GNUNET_RPS_Request_Handle *
+struct GNUNET_RPS_Request_Handle *
 GNUNET_RPS_request_peers (struct GNUNET_RPS_Handle *h, uint32_t n,
                           GNUNET_RPS_NotifyReadyCB ready_cb,
                           void *cls);
@@ -154,7 +154,7 @@ GNUNET_RPS_request_peer_info (struct GNUNET_RPS_Handle *rps_handle,
  * @param n number of peers to seed
  * @param ids the ids of the peers seeded
  */
-  void
+void
 GNUNET_RPS_seed_ids (struct GNUNET_RPS_Handle *h, uint32_t n,
                      const struct GNUNET_PeerIdentity * ids);
 
@@ -163,7 +163,7 @@ GNUNET_RPS_seed_ids (struct GNUNET_RPS_Handle *h, uint32_t n,
  *
  * @param rh handle of the pending request to be canceled
  */
-  void
+void
 GNUNET_RPS_request_cancel (struct GNUNET_RPS_Request_Handle *rh);
 
 
index e929c89de6ab25b6d0bc264568af5fdd0ffd5204..c5530a1eb8b02e6ac399845222ccc46b481d6baf 100644 (file)
@@ -345,7 +345,7 @@ struct Sub
   unsigned int sampler_size_est_need;
 
   /**
-   * Time inverval the do_round task runs in.
+   * Time interval the do_round task runs in.
    */
   struct GNUNET_TIME_Relative round_interval;