all: Fix typos found by codespell (#8833)

This commit is contained in:
Dimitri Papadopoulos Orfanos
2023-03-21 08:07:28 +01:00
committed by GitHub
parent bc371eacf6
commit 526e21ae26
14 changed files with 24 additions and 24 deletions
@@ -3378,7 +3378,7 @@ angular.module('syncthing.core')
return '';
}
// When the user explicitely added a wild-card, we don't show hints.
// When the user explicitly added a wild-card, we don't show hints.
if (filterEntries.length === 1 && filterEntries[0].match === '*') {
return '';
}
@@ -3413,7 +3413,7 @@ angular.module('syncthing.core')
};
$scope.validateXattrFilter = function () {
// Fitlering out empty rules when saving the config
// Filtering out empty rules when saving the config
$scope.currentFolder.xattrFilter.entries = $scope.currentFolder.xattrFilter.entries.filter(function (n) {
return n.match !== "";
});