2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

73_WaterCalculator.pm: Spelling error "di(s)abled" corrected

git-svn-id: https://svn.fhem.de/fhem/trunk@16262 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
Sailor 2018-02-25 09:26:25 +00:00
parent 4e4d928e4b
commit 95f901d798

View File

@ -139,7 +139,7 @@ sub WaterCalculator_Attr(@)
my $name = $a[1];
my $hash = $defs{$name};
### Check whether "disbale" attribute has been provided
### Check whether "disable" attribute has been provided
if ($a[2] eq "disable")
{
if ($a[3] eq 0)
@ -148,7 +148,7 @@ sub WaterCalculator_Attr(@)
}
elsif ($a[3] eq 1)
{
$hash->{STATE} = "diabled";
$hash->{STATE} = "disabled";
}
}