diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-01-21 19:19:04 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-01-21 19:19:04 +0100 |
commit | f39ea21098340bd99c48669f152c9068046c2c99 (patch) | |
tree | d1166fce1a4a8c470dfaf364816f767678c4729e /src/Upgrades.vala | |
parent | bc48a4cff815ed156b603c92e684779c317417ba (diff) | |
parent | a7ff7c49085c320c1e0a2ffb66cc6d283c5acb8e (diff) |
Merge tag 'upstream/0.25.3'
Upstream version 0.25.3
Diffstat (limited to 'src/Upgrades.vala')
-rw-r--r-- | src/Upgrades.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Upgrades.vala b/src/Upgrades.vala index d60d195..85349ae 100644 --- a/src/Upgrades.vala +++ b/src/Upgrades.vala @@ -51,7 +51,7 @@ public class Upgrades { // When creating a new upgrade task, you MUST add it to the constructor // supplied in Upgrades (see above.) private interface UpgradeTask : Object{ - // Returns the number of steps involved in the ugprade. + // Returns the number of steps involved in the upgrade. public abstract uint64 get_step_count(); // Performs the upgrade. Note that when using the progress @@ -62,7 +62,7 @@ private interface UpgradeTask : Object{ // Deletes the mimics folder, if it still exists. // Note: for the step count to be consistent, files cannot be written -// to the mimcs folder for the durration of this task. +// to the mimcs folder for the duration of this task. private class MimicsRemovalTask : Object, UpgradeTask { // Mimics folder (to be deleted, if present) private File mimic_dir = AppDirs.get_data_dir().get_child("mimics"); |