Skip to content

[TEST] No-op comment change #114048

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/coreclr/nativeaot/Runtime/Crst.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// -----------------------------------------------------------------------------------------------------------
//
// Minimal Crst implementation based on CRITICAL_SECTION. Doesn't support much except for the basic locking
// functionality (in particular there is no rank violation checking).
// functionality (in particular there is no rank violation checking)..
//

#ifndef __Crst_h__
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/vm/array.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// A 32 dimension array with at least 2 elements in each dimension requires
// 4gb of memory. Limit the maximum number of dimensions to a value that
// requires 4gb of memory.
// If you make this bigger, you need to make MAX_CLASSNAME_LENGTH bigger too.
// If you make this bigger, you need to make MAX_CLASSNAME_LENGTH bigger too..
#define MAX_RANK 32

class MethodTable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public class Task : IAsyncResult, IDisposable
[Flags]
internal enum TaskStateFlags
{
// State constants for m_stateFlags;
// State constants for m_stateFlags:
// The bits of m_stateFlags are allocated as follows:
// 0x7FFF0000 - Task state flags
// 0x0000FF00 - internal TaskCreationOptions flags
Expand Down
Loading