Skip to content

Commit 4935445

Browse files
committed
Docs: Fix invokation->invocation typos.
1 parent f55bdf9 commit 4935445

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

sigc++/adaptors/bind.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ struct visitor<bind_functor<-1, T_functor, T_type...>>
272272
*
273273
* @param func Functor that should be wrapped.
274274
* @param b Arguments to bind to @e func.
275-
* @return Adaptor that executes @e func with the bound argument on invokation.
275+
* @return Adaptor that executes @e func with the bound argument on invocation.
276276
*
277277
* @ingroup bind
278278
*/
@@ -289,7 +289,7 @@ bind(const T_functor& func, T_bound... b)
289289
*
290290
* @param func Functor that should be wrapped.
291291
* @param b Arguments to bind to @e func.
292-
* @return Adaptor that executes func with the bound argument on invokation.
292+
* @return Adaptor that executes func with the bound argument on invocation.
293293
*
294294
* @ingroup bind
295295
*/

sigc++/adaptors/bind_return.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ struct visitor<bind_return_functor<T_return, T_functor>>
101101
*
102102
* @param functor Functor that should be wrapped.
103103
* @param ret_value Argument to fix the return value of @e functor to.
104-
* @return Adaptor that executes @e functor on invokation and returns @e ret_value.
104+
* @return Adaptor that executes @e functor on invocation and returns @e ret_value.
105105
*
106106
* @ingroup bind
107107
*/

sigc++/adaptors/compose.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace sigc
2525

2626
/** @defgroup compose compose()
2727
* sigc::compose() combines two or three arbitrary functors.
28-
* On invokation, parameters are passed on to one or two getter functor(s).
28+
* On invocation, parameters are passed on to one or two getter functor(s).
2929
* The return value(s) are then passed on to the setter function.
3030
*
3131
* @par Examples:
@@ -70,7 +70,7 @@ struct compose1_functor : public adapts<T_setter>
7070
}
7171

7272
/** Constructs a compose1_functor object that combines the passed functors.
73-
* @param setter Functor that receives the return values of the invokation of @e getter1 and
73+
* @param setter Functor that receives the return values of the invocation of @e getter1 and
7474
* @e getter2.
7575
* @param getter Functor to invoke from operator()().
7676
*/
@@ -104,7 +104,7 @@ struct compose2_functor : public adapts<T_setter>
104104
}
105105

106106
/** Constructs a compose2_functor object that combines the passed functors.
107-
* @param setter Functor that receives the return values of the invokation of @e getter1 and
107+
* @param setter Functor that receives the return values of the invocation of @e getter1 and
108108
* @e getter2.
109109
* @param getter1 Functor to invoke from operator()().
110110
* @param getter2 Functor to invoke from operator()().
@@ -162,9 +162,9 @@ struct visitor<compose2_functor<T_setter, T_getter1, T_getter2>>
162162

163163
/** Creates an adaptor of type sigc::compose1_functor which combines two functors.
164164
*
165-
* @param setter Functor that receives the return value of the invokation of @e getter.
165+
* @param setter Functor that receives the return value of the invocation of @e getter.
166166
* @param getter Functor to invoke from operator()().
167-
* @return Adaptor that executes @e setter with the value returned from invokation of @e
167+
* @return Adaptor that executes @e setter with the value returned from invocation of @e
168168
* getter.
169169
*
170170
* @ingroup compose
@@ -178,11 +178,11 @@ compose(const T_setter& setter, const T_getter& getter)
178178

179179
/** Creates an adaptor of type sigc::compose2_functor which combines three functors.
180180
*
181-
* @param setter Functor that receives the return values of the invokation of @e getter1 and
181+
* @param setter Functor that receives the return values of the invocation of @e getter1 and
182182
* @e getter2.
183183
* @param getter1 Functor to invoke from operator()().
184184
* @param getter2 Functor to invoke from operator()().
185-
* @return Adaptor that executes @e setter with the values return from invokation of @e
185+
* @return Adaptor that executes @e setter with the values return from invocation of @e
186186
* getter1 and @e getter2.
187187
*
188188
* @ingroup compose

sigc++/functors/mem_fun.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ struct visitor<bound_mem_functor<T_func, T_arg...>>
183183

184184
/** Creates a functor of type sigc::mem_functor which wraps a method.
185185
* @param func Pointer to method that should be wrapped.
186-
* @return Functor that executes func on invokation.
186+
* @return Functor that executes func on invocation.
187187
*
188188
* @ingroup mem_fun
189189
*/
@@ -196,7 +196,7 @@ mem_fun(T_return (T_obj::*func)(T_arg...))
196196

197197
/** Creates a functor of type sigc::const_mem_functor which wraps a const method.
198198
* @param func Pointer to method that should be wrapped.
199-
* @return Functor that executes func on invokation.
199+
* @return Functor that executes func on invocation.
200200
*
201201
* @ingroup mem_fun
202202
*/
@@ -209,7 +209,7 @@ mem_fun(T_return (T_obj::*func)(T_arg...) const)
209209

210210
/** Creates a functor of type sigc::volatile_mem_functor which wraps a volatile method.
211211
* @param func Pointer to method that should be wrapped.
212-
* @return Functor that executes func on invokation.
212+
* @return Functor that executes func on invocation.
213213
*
214214
* @ingroup mem_fun
215215
*/
@@ -222,7 +222,7 @@ mem_fun(T_return (T_obj::*func)(T_arg...) volatile)
222222

223223
/** Creates a functor of type sigc::const_volatile_mem_functor which wraps a const volatile method.
224224
* @param func Pointer to method that should be wrapped.
225-
* @return Functor that executes func on invokation.
225+
* @return Functor that executes func on invocation.
226226
*
227227
* @ingroup mem_fun
228228
*/
@@ -237,7 +237,7 @@ mem_fun(T_return (T_obj::*func)(T_arg...) const volatile)
237237
* instance.
238238
* @param obj Reference to object instance the functor should operate on.
239239
* @param func Pointer to method that should be wrapped.
240-
* @return Functor that executes @e func on invokation.
240+
* @return Functor that executes @e func on invocation.
241241
*
242242
* @ingroup mem_fun
243243
*/
@@ -252,7 +252,7 @@ mem_fun(/**/ T_obj& obj, T_return (T_obj2::*func)(T_arg...))
252252
* object instance.
253253
* @param obj Reference to object instance the functor should operate on.
254254
* @param func Pointer to method that should be wrapped.
255-
* @return Functor that executes @e func on invokation.
255+
* @return Functor that executes @e func on invocation.
256256
*
257257
* @ingroup mem_fun
258258
*/
@@ -267,7 +267,7 @@ mem_fun(/*const*/ T_obj& obj, T_return (T_obj2::*func)(T_arg...) const)
267267
* object instance.
268268
* @param obj Reference to object instance the functor should operate on.
269269
* @param func Pointer to method that should be wrapped.
270-
* @return Functor that executes @e func on invokation.
270+
* @return Functor that executes @e func on invocation.
271271
*
272272
* @ingroup mem_fun
273273
*/
@@ -282,7 +282,7 @@ mem_fun(/**/ T_obj& obj, T_return (T_obj2::*func)(T_arg...) volatile)
282282
* an object instance.
283283
* @param obj Reference to object instance the functor should operate on.
284284
* @param func Pointer to method that should be wrapped.
285-
* @return Functor that executes @e func on invokation.
285+
* @return Functor that executes @e func on invocation.
286286
*
287287
* @ingroup mem_fun
288288
*/

sigc++/functors/ptr_fun.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class pointer_functor<T_return(T_args...)>
9797

9898
/** Creates a functor of type sigc::pointer_functor which wraps an existing non-member function.
9999
* @param func Pointer to function that should be wrapped.
100-
* @return Functor that executes @e func on invokation.
100+
* @return Functor that executes @e func on invocation.
101101
*
102102
* @ingroup ptr_fun
103103
*/

sigc++/signal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ class signal<T_return(T_arg...)> : public signal_with_accumulator<T_return, void
552552
*
553553
* An accumulator is a functor that uses a pair of special iterators
554554
* to step through a list of slots and calculate a return value
555-
* from the results of the slot invokations. The iterators' operator*()
555+
* from the results of the slot invocations. The iterators' operator*()
556556
* executes the slot. The return value is buffered, so that in an expression
557557
* like @code a = (*i) * (*i); @endcode the slot is executed only once.
558558
*

0 commit comments

Comments
 (0)