Fix errors found by new find-doc-nits
[openssl.git] / util / find-doc-nits
index abb7750b12f539794b6ea0fff6f74ebb018786c2..74018e799979aa7ad4cf12498970200a2fe4e99b 100755 (executable)
@@ -395,6 +395,9 @@ sub wording {
     my $contents = shift;
 
     foreach my $k ( keys %preferred_words ) {
+        # Sigh, trademark
+        next if $k eq 'file system'
+            and $contents =~ /Microsoft Encrypted File System/;
         err($id, "found '$k' should use '$preferred_words{$k}'")
             if $contents =~ /\b\Q$k\E\b/i;
     }