From 0f43f5af6d648bfc20b7944ae69cb08857defb82 Mon Sep 17 00:00:00 2001 From: Chris Angelico Date: Mon, 21 Jan 2019 23:57:32 +1100 Subject: [PATCH] Fix a couple of docs typos --- src/builtin_functions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/builtin_functions.c b/src/builtin_functions.c index a1f4b64519..68efec3144 100644 --- a/src/builtin_functions.c +++ b/src/builtin_functions.c @@ -9501,13 +9501,13 @@ void f_enumerate(INT32 args) /*! @decl string defined(program x, string identifier) *! - *! Returns a string with filename and linenumber where @[idenfifier] + *! Returns a string with filename and linenumber where @[identifier] *! in @[x] was defined. *! *! Returns @expr{0@} (zero) when no line can be found, e.g. for *! builtin functions. *! - *! If @[idenfier] can not be found in @[x] this function returns + *! If @[identifier] can not be found in @[x] this function returns *! where the program is defined. */ PMOD_EXPORT void f_program_identifier_defined(INT32 args)