summaryrefslogtreecommitdiff
path: root/thunar
diff options
context:
space:
mode:
authorSergios - Anestis Kefalidis <sergioskefalidis@gmail.com>2022-03-10 14:25:13 +0200
committerAlexander Schwinn <alexxcons@xfce.org>2022-03-10 17:16:35 +0000
commit4b62ce55dca30abcb2f6a260c4f9e904d9d59f7b (patch)
tree9597cb8b9b749d7a3ed1f0d241a8b6f9ea3ffecf /thunar
parent46dd6340fa332fb9cffe9c5f76f474b6d6db4e51 (diff)
downloadthunar-4b62ce55dca30abcb2f6a260c4f9e904d9d59f7b.tar.gz
Fix typos and identation.
Diffstat (limited to 'thunar')
-rw-r--r--thunar/thunar-transfer-job.c2
-rw-r--r--thunar/thunar-tree-model.c2
-rw-r--r--thunar/thunar-tree-view.c2
-rw-r--r--thunar/thunar-user.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/thunar/thunar-transfer-job.c b/thunar/thunar-transfer-job.c
index 52c960a7..75ff0c11 100644
--- a/thunar/thunar-transfer-job.c
+++ b/thunar/thunar-transfer-job.c
@@ -557,7 +557,7 @@ ttj_copy_file (ThunarTransferJob *job,
/**
* MR !127 notes:
- * (Discusssion: https://gitlab.xfce.org/xfce/thunar/-/merge_requests/127)
+ * (Discussion: https://gitlab.xfce.org/xfce/thunar/-/merge_requests/127)
*
* Proper solution for copying lost metadata requires
* `g_file_build_attribute_list_for_copy`, which is
diff --git a/thunar/thunar-tree-model.c b/thunar/thunar-tree-model.c
index fcd49cd8..2d306c29 100644
--- a/thunar/thunar-tree-model.c
+++ b/thunar/thunar-tree-model.c
@@ -307,7 +307,7 @@ thunar_tree_model_init (ThunarTreeModel *model)
/* allocate the "virtual root node" */
model->root = g_node_new (NULL);
- /* inititalize references to certain toplevel nodes */
+ /* initialize references to certain toplevel nodes */
model->file_system = NULL;
model->network = NULL;
diff --git a/thunar/thunar-tree-view.c b/thunar/thunar-tree-view.c
index 608b325a..185c45ae 100644
--- a/thunar/thunar-tree-view.c
+++ b/thunar/thunar-tree-view.c
@@ -1478,7 +1478,7 @@ thunar_tree_view_action_open (ThunarTreeView *view)
device = thunar_tree_view_get_selected_device (view);
file = thunar_tree_view_get_selected_file (view);
- if (device != NULL)
+ if (device != NULL)
{
if (thunar_device_is_mounted (device))
thunar_tree_view_open_selection (view);
diff --git a/thunar/thunar-user.c b/thunar/thunar-user.c
index 3c29909d..1e3b3a2e 100644
--- a/thunar/thunar-user.c
+++ b/thunar/thunar-user.c
@@ -219,7 +219,7 @@ thunar_user_class_init (ThunarUserClass *klass)
/* determine the current process' effective user id, we do
* this only once to avoid the syscall overhead on every
- * is_me() invokation.
+ * is_me() invocation.
*/
thunar_user_effective_uid = geteuid ();