summaryrefslogtreecommitdiff
path: root/include/anope.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-10-19 03:43:04 -0400
committerAdam <Adam@anope.org>2013-10-19 03:43:04 -0400
commitf0318fdbe841cb1bfdf2e76fe2b0bfc0290fe4b9 (patch)
tree827f1818f739d46f0d21a667521671e1e0089d15 /include/anope.h
parent93a83da771842cd1c999962dc7d76e6ece6c9c9d (diff)
Fix some typos of language
Diffstat (limited to 'include/anope.h')
-rw-r--r--include/anope.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/anope.h b/include/anope.h
index 664baeb69..51ece1cd6 100644
--- a/include/anope.h
+++ b/include/anope.h
@@ -499,21 +499,21 @@ namespace Anope
/** Retrieves a human readable string representing the time in seconds
* @param seconds The time on seconds, eg 60
- * @param nc The account to use langauge settings for to translate this string, if applicable
+ * @param nc The account to use language settings for to translate this string, if applicable
* @return A human readable string, eg "1 minute"
*/
extern CoreExport Anope::string Duration(time_t seconds, const NickCore *nc = NULL);
/** Generates a human readable string of type "expires in ..."
* @param expires time in seconds
- * @param nc The account to use langauge settings for to translate this string, if applicable
+ * @param nc The account to use language settings for to translate this string, if applicable
* @return A human readable string, eg "expires in 5 days"
*/
extern CoreExport Anope::string Expires(time_t seconds, const NickCore *nc = NULL);
/** Converts a time in seconds (epoch) to a human readable format.
* @param t The time
- * @param nc The account to use langauge settings for to translate this string, if applicable
+ * @param nc The account to use language settings for to translate this string, if applicable
* @param short_output If true, the output is just a date (eg, "Apr 12 20:18:22 2009 MSD"), else it includes the date and how long ago/from now that date is, (eg "Apr 12 20:18:22 2009 MSD (1313 days, 9 hours, 32 minutes ago)"
*/
extern CoreExport Anope::string strftime(time_t t, const NickCore *nc = NULL, bool short_output = false);