mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-24 09:57:09 +00:00
Fix spelling mistakes in variable names
Thanks, codespell!
This commit is contained in:
parent
8713eb3722
commit
f776b7e04f
5 changed files with 19 additions and 19 deletions
|
@ -17,8 +17,8 @@ $api_url='https://auth.api.rackspacecloud.com/v1.0/';
|
|||
|
||||
function SplitTwice($content,$first,$second) {
|
||||
$s1=split($first,$content);
|
||||
$splitted=split($second,$s1[1]);
|
||||
return trim($splitted[0]);
|
||||
$tokens=split($second,$s1[1]);
|
||||
return trim($tokens[0]);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ $api_url='https://auth.api.rackspacecloud.com/v1.0/';
|
|||
|
||||
function SplitTwice($content,$first,$second) {
|
||||
$s1=split($first,$content);
|
||||
$splitted=split($second,$s1[1]);
|
||||
return trim($splitted[0]);
|
||||
$tokens=split($second,$s1[1]);
|
||||
return trim($tokens[0]);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue