Skip to content

Commit bdacdd1

Browse files
thomhurstclaude
andcommitted
fix: restore XML documentation comment syntax
Change `// <summary>` back to `/// <summary>` for proper XML documentation generation. Also removed outdated cache reference from the comment since attributes are now passed directly. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 307b2c3 commit bdacdd1

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

TUnit.Core/TestDetails.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,8 @@ public IEnumerable<T> GetAttributes<T>() where T : Attribute
6565
? attrs.OfType<T>()
6666
: [];
6767

68-
// <summary>
68+
/// <summary>
6969
/// Gets all attributes as a flattened collection.
70-
/// Cached after first access for performance.
7170
/// </summary>
7271
/// <returns>All attributes associated with this test.</returns>
7372
public IReadOnlyList<Attribute> GetAllAttributes() => _allAttributes;

0 commit comments

Comments
 (0)