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 9824198898
commit 53b22e4c11

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";
}
}