Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Our first monkey test case is now working
[simgrid.git] / tools / internal / spell_comments.pl
index ceea60d83caf4c13002f628e0f651f3696fa4fe2..93355aa4ef651d644805955259fc487abfce100b 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (c) 2013-2019. The SimGrid Team.
+# Copyright (c) 2013-2022. The SimGrid Team.
 # All rights reserved.
 
 # This program is free software; you can redistribute it and/or modify it
@@ -47,7 +47,7 @@ foreach my $file (@ARGV) {
        open(PIN, "ispell -d american -p $DICTFILE -l < $TEMPFILE | sort -uf |") || die;
        my @badwords;
        while (my $err = <PIN>) {
-           chomp $err; 
+           chomp $err;
            push(@badwords, $err) if ($err =~ /\w/ && length($err)>0);
        }
        close(PIN) || die;