Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 8594a24

Browse files
committed
[llvm][NFC] Fix typos in Errc.h description
1 parent e7afaad commit 8594a24

File tree

1 file changed

+2
-2
lines changed
  • llvm/include/llvm/Support

1 file changed

+2
-2
lines changed

llvm/include/llvm/Support/Errc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// some problems with std::errc that can be avoided by using our own
1111
// enumeration:
1212
//
13-
// * std::errc is a namespace in some implementations. That meas that ADL
13+
// * std::errc is a namespace in some implementations. That means that ADL
1414
// doesn't work and it is sometimes necessary to write std::make_error_code
1515
// or in templates:
1616
// using std::make_error_code;
@@ -22,7 +22,7 @@
2222
// the intersection of all the ones we support.
2323
//
2424
// * std::errc is just marked with is_error_condition_enum. This means that
25-
// common patters like AnErrorCode == errc::no_such_file_or_directory take
25+
// common patterns like AnErrorCode == errc::no_such_file_or_directory take
2626
// 4 virtual calls instead of two comparisons.
2727
//===----------------------------------------------------------------------===//
2828

0 commit comments

Comments
 (0)