Skip to content

Commit 1ee0909

Browse files
Apply suggestion from @kazutakahirata
Co-authored-by: Kazu Hirata <[email protected]>
1 parent a365761 commit 1ee0909

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/include/llvm/ADT/RadixTree.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ namespace llvm {
6464
/// The `RadixTree` takes ownership of the `KeyType` and `T` objects
6565
/// inserted into it. When an element is removed or the tree is destroyed,
6666
/// these objects will be destructed.
67-
/// However, if `KeyType` is a reference-like type, e.g. StringRef or range,
68-
/// User must guarantee that destination has lifetime longer than the tree.
67+
/// However, if `KeyType` is a reference-like type, e.g., StringRef or range,
68+
/// the user must guarantee that destination has lifetime longer than the tree.
6969
template <typename KeyType, typename T> class RadixTree {
7070
public:
7171
using key_type = KeyType;

0 commit comments

Comments
 (0)