diff options
Diffstat (limited to 'perl-install/devices.pm')
-rw-r--r-- | perl-install/devices.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/devices.pm b/perl-install/devices.pm index 5ebb848ba..316a2f0f4 100644 --- a/perl-install/devices.pm +++ b/perl-install/devices.pm @@ -19,7 +19,7 @@ sub size { return $size * $common::SECTORSIZE; } - #- sad it didn't work, well searching the size using the dichotomy algorithm! + #- sad it did not work, well searching the size using the dichotomy algorithm! my $low = 0; my ($high, $mid); @@ -172,7 +172,7 @@ sub make($) { if ($file =~ m|/dev/| && -e '/dev/.devfsd') { #- argh, creating devices is no good with devfs... - #- return the file even if the device file doesn't exist + #- return the file even if the device file does not exist #- the caller will fail or not, better compatibility than raising an exception here return $file; } |