diff --git a/lib/7.8/modules/Crypto.pmod/RSA.pike b/lib/7.8/modules/Crypto.pmod/RSA.pike index f8d69db2817f62335266dbe1412d3aa6db476537..cddbec8e84a95e11ed685ced5d95ccb76ebeebab 100644 --- a/lib/7.8/modules/Crypto.pmod/RSA.pike +++ b/lib/7.8/modules/Crypto.pmod/RSA.pike @@ -132,7 +132,7 @@ int query_blocksize() { } //! Pads the @[message] to the current block size with method @[type] -//! and returns the result as an integer. This is equvivalent to +//! and returns the result as an integer. This is equivalent to //! OS2IP(EME-PKCS1-V1_5-ENCODE(message)) in PKCS-1. //! @param type //! @int diff --git a/lib/modules/Array.pmod b/lib/modules/Array.pmod index 69a285fdcd6fad59a46477347320936ab0476adc..2d43b3045e9561d00bb25b134844ae5f324f5051 100644 --- a/lib/modules/Array.pmod +++ b/lib/modules/Array.pmod @@ -252,7 +252,7 @@ array sort_array(array arr, function(int(0..0),int(0..0),mixed ...:int)|void cmp //! Get multiple columns from an array. //! -//! This function is equvivalent to +//! This function is equivalent to //! @pre{ //! map(ind, lambda(mixed i) { return column(x, i); }) //! @} diff --git a/lib/modules/Stdio.pmod/Terminfo.pmod b/lib/modules/Stdio.pmod/Terminfo.pmod index e657fee12f3026edadc1340afdc62f6840cccac0..3ac67280d76c7f4164dd20fe1526edce786da13e 100644 --- a/lib/modules/Stdio.pmod/Terminfo.pmod +++ b/lib/modules/Stdio.pmod/Terminfo.pmod @@ -895,7 +895,7 @@ Termcap getTerm(string|void term) } //! Returns an object describing the fallback terminal for the terminal -//! @[term]. This is usually equvivalent to @[Stdio.Terminfo.getTerm("dumb")]. +//! @[term]. This is usually equivalent to @[Stdio.Terminfo.getTerm("dumb")]. //! //! @seealso //! Stdio.Terminfo.getTerm diff --git a/lib/modules/__builtin.pmod/Nettle.pmod/Sign.pike b/lib/modules/__builtin.pmod/Nettle.pmod/Sign.pike index 0c12b750e28e1c1d4bfd71dcca5110ba5ebf97c2..faa755d8b63bbd5effe2bd4d17453bbb74f3590f 100644 --- a/lib/modules/__builtin.pmod/Nettle.pmod/Sign.pike +++ b/lib/modules/__builtin.pmod/Nettle.pmod/Sign.pike @@ -26,7 +26,7 @@ int(0..) key_size(); //! @[_equal()] int(0..1) public_key_equal(this_program other); -//! Check whether two objects are equvivalent. +//! Check whether two objects are equivalent. //! //! This includes checking both the public and private keys. //! diff --git a/src/builtin_functions.c b/src/builtin_functions.c index 7f7830439933c5563be3565f53cb6d57f6cd3052..5f8e8285ca5bd9394031d8490084b477a7861182 100644 --- a/src/builtin_functions.c +++ b/src/builtin_functions.c @@ -4461,7 +4461,7 @@ static struct pike_string *replace_many(struct pike_string *str, *! If the first argument is a string, and the others array(string), a string *! with every occurrance of @[from][@i{i@}] in @[s] replaced with *! @[to][@i{i@}] will be returned. Instead of the arrays @[from] and @[to] - *! a mapping equvivalent to @expr{@[mkmapping](@[from], @[to])@} can be + *! a mapping equivalent to @expr{@[mkmapping](@[from], @[to])@} can be *! used. *! *! If the first argument is an array or mapping, the values of @[a] which diff --git a/src/cpp.c b/src/cpp.c index c01c84b41dbddddfa480af2dcdeaa7a5c90bcb90..5610ec5804746a8ef0b1a9d36c601a53a4bf5605 100644 --- a/src/cpp.c +++ b/src/cpp.c @@ -569,7 +569,7 @@ void cpp_change_compat(struct cpp *this, int major, int minor) *! *! @tt{#ifdef @i{<identifier>@}@} *! - *! is equvivalent to + *! is equivalent to *! *! @tt{#if @[defined](@i{<identifier>@})@} *! @@ -587,7 +587,7 @@ void cpp_change_compat(struct cpp *this, int major, int minor) *! *! @tt{#ifndef @i{<identifier>@}@} *! - *! is equvivalent to + *! is equivalent to *! *! @tt{#if !@[defined](@i{<identifier>@})@} *! @@ -644,7 +644,7 @@ void cpp_change_compat(struct cpp *this, int major, int minor) *! *! @example *! - *! The following two are equvivalent: + *! The following two are equivalent: *! *! @code *! #ifdef A @@ -852,7 +852,7 @@ void cpp_change_compat(struct cpp *this, int major, int minor) *! is defined. *! *! @note - *! @tt{#if defined(MY_DEF)@} is equvivalent to + *! @tt{#if defined(MY_DEF)@} is equivalent to *! @tt{#ifdef MY_DEF@}. *! *! @seealso diff --git a/src/modules/Java/jvm.c b/src/modules/Java/jvm.c index c9b1339a9fac65fddbe63317d7ff0598ce72292c..aa4631c13d4f2d50cf7d89cf7fe468ca49b56f12 100644 --- a/src/modules/Java/jvm.c +++ b/src/modules/Java/jvm.c @@ -1513,7 +1513,7 @@ struct native_method_context; * data Value to prepend in the argument list. * statc dispatch is a static method. * dispatch Function to call. - * args Number of integer equvivalents to pass along. + * args Number of integer equivalents to pass along. * flt_args bitfield: There are float arguments at these positions. * dbl_args bitfield: There are double arguments at these positions. */ diff --git a/src/modules/Math/module.pmod.in b/src/modules/Math/module.pmod.in index 24da03644f1f4b98950d5e08e0f61ad5bcb6dc2c..1b306d72327f88b306b22c090f69c849493c6444 100644 --- a/src/modules/Math/module.pmod.in +++ b/src/modules/Math/module.pmod.in @@ -345,7 +345,7 @@ class Angle { //! Calculate binomial koefficient @[n] choose @[k]. //! -//! This is equvivalent to @tt{@[n]!/(@[k]!*(@[n]-@[k])!)@}. +//! This is equivalent to @tt{@[n]!/(@[k]!*(@[n]-@[k])!)@}. int choose(int n, int k) { if (k*2 > n) k = n-k; diff --git a/src/modules/system/system.c b/src/modules/system/system.c index f14ad615034f1a6adc7d5d7a4cb97d9473732cf6..4492d87112c61b48d640d660a47e5523f9cb1b28 100644 --- a/src/modules/system/system.c +++ b/src/modules/system/system.c @@ -2002,7 +2002,7 @@ int get_inet_addr(PIKE_SOCKADDR *addr,char *name,char *service, INT_TYPE port, #ifdef AF_INET6 if (inet_flags & 2) { SOCKADDR_FAMILY(*addr) = AF_INET6; - /* Note: This is equvivalent to :: (aka IPv6 ANY). */ + /* Note: This is equivalent to :: (aka IPv6 ANY). */ memset(&addr->ipv6.sin6_addr, 0, sizeof(addr->ipv6.sin6_addr)); } #endif diff --git a/src/pike_embed.c b/src/pike_embed.c index 3a5f2bcefcec1fb301d98304f58c21124ebdb48b..34226183fb1c47bf69502436674e480c739ff113 100644 --- a/src/pike_embed.c +++ b/src/pike_embed.c @@ -194,10 +194,10 @@ void init_pike_runtime(void (*exit_cb)(int)) * too unsafe (consider 64-bit systems). */ #if STACK_DIRECTION < 0 - /* Equvivalent with |= 0xffff */ + /* Equivalent with |= 0xffff */ Pike_interpreter.stack_top += ~(PTR_TO_INT(Pike_interpreter.stack_top)) & 0xffff; #else /* STACK_DIRECTION >= 0 */ - /* Equvivalent with &= ~0xffff */ + /* Equivalent with &= ~0xffff */ Pike_interpreter.stack_top -= PTR_TO_INT(Pike_interpreter.stack_top) & 0xffff; #endif /* STACK_DIRECTION < 0 */ diff --git a/src/program.c b/src/program.c index 28ac4e6be1a4f13c7373409f7454ef8ec3186cb1..36e960476052240f028e5dcbf5a49a00ed0358a4 100644 --- a/src/program.c +++ b/src/program.c @@ -392,7 +392,7 @@ static struct pike_type *lfun_setter_type_string = NULL; *! } *! @endcode *! In the above case an implicit @[lfun::create()] is created, and - *! it's equvivalent to: + *! it's equivalent to: *! @code *! class Foo { *! int foo; @@ -863,7 +863,7 @@ static struct pike_type *lfun_setter_type_string = NULL; *! Hashing callback. *! *! The main caller of this function is @[predef::hash_value()] - *! or the low-level equvivalent, which get called by various + *! or the low-level equivalent, which get called by various *! mapping operations when the object is used as index in a mapping. *! *! @returns