summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2021-11-11 20:12:05 -0600
committerGary Kramlich <grim@reaperworld.com>2021-11-11 20:12:05 -0600
commitb59e3baf9dd0f04b4765cdbdf9d0bab38be15ddc (patch)
tree39e67e888e60447df21d3f9abacea63268def028 /doc
parent0ce8b9162c422cd9a0fc3eff11fdfacf915e97f7 (diff)
downloadpidgin-b59e3baf9dd0f04b4765cdbdf9d0bab38be15ddc.tar.gz
Ran codespell on the libpurple docs that were converted to gi-docgen
Testing Done: Ran codespell again. Reviewed at https://reviews.imfreedom.org/r/1127/
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/libpurple/plugin_i18n.md2
-rw-r--r--doc/reference/libpurple/signals_account.md2
-rw-r--r--doc/reference/libpurple/tut_c_plugins.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/reference/libpurple/plugin_i18n.md b/doc/reference/libpurple/plugin_i18n.md
index cfe724a2d7..e2926a77d2 100644
--- a/doc/reference/libpurple/plugin_i18n.md
+++ b/doc/reference/libpurple/plugin_i18n.md
@@ -123,7 +123,7 @@ the first parameter to `GPLUGIN_NATIVE_PLUGIN_DECLARE()` plus `_load`.
* Go through the rest of your code and mark all the other strings for
translation with `_()`.
-* When thats done, feel free to commit your work, create your po template
+* When that's done, feel free to commit your work, create your po template
(pot file) or whatever.
* To create you po template, `cd` to `po` and execute:
diff --git a/doc/reference/libpurple/signals_account.md b/doc/reference/libpurple/signals_account.md
index 8482dc7a1f..4399a88fdc 100644
--- a/doc/reference/libpurple/signals_account.md
+++ b/doc/reference/libpurple/signals_account.md
@@ -345,7 +345,7 @@ void user_function(PurpleAccount *account,
Emitted when the authorization request for a buddy is granted.
-**Paramaters:**
+**Parameters:**
**account**
: The account.
diff --git a/doc/reference/libpurple/tut_c_plugins.md b/doc/reference/libpurple/tut_c_plugins.md
index a9fda1142e..33cd6c3c09 100644
--- a/doc/reference/libpurple/tut_c_plugins.md
+++ b/doc/reference/libpurple/tut_c_plugins.md
@@ -89,7 +89,7 @@ You can initialize any variables, register dynamic types, and so on in this
function. Plugins may also want to add their preferences to the pref
tree--more about that later. In this plugin we'll just use it to display a
message. Just like `hello_world_query` if there are any errors that arise, you
-can call `g_set_error()` on the `error` agument and return `FALSE`.
+can call `g_set_error()` on the `error` argument and return `FALSE`.
`hello_world_unload` is called when the plugin is unloaded. That is, when the
user has manually unloaded the plugin or the program is shutting down. We can