Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Merge pull request #1643 from nguerrera/dispose-doc-fix
Browse files Browse the repository at this point in the history
Fix incorrect documentation about parallel dispose
  • Loading branch information
nguerrera committed May 6, 2015
2 parents 882a41e + 600a84a commit 8704d8a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ public PEReader(ImmutableArray<byte> peImage)
/// Disposes all memory allocated by the reader.
/// </summary>
/// <remarks>
/// <see cref="Dispose"/> can be called multiple times (even in parallel).
/// However, it is not safe to call <see cref="Dispose"/> in parallel with any other operation on the <see cref="PEReader"/>
/// <see cref="Dispose"/> can be called multiple times (but not in parallel).
/// It is not safe to call <see cref="Dispose"/> in parallel with any other operation on the <see cref="PEReader"/>
/// or reading from <see cref="PEMemoryBlock"/>s retrieved from the reader.
/// </remarks>
public void Dispose()
Expand Down

0 comments on commit 8704d8a

Please sign in to comment.