Skip to content

Commit 91e5bf9

Browse files
authored
Fix character encoding in checked-build.c (#117744)
1 parent 10bc776 commit 91e5bf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mono/mono/utils/checked-build.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ check_mempool_owner_eq (MonoMemPoolOwner a, MonoMemPoolOwner b)
501501
return a.image == b.image && a.image_set == b.image_set;
502502
}
503503

504-
// Say image X "references" image Y if X either contains Y in its modules field, or Xs "references" field contains an
504+
// Say image X "references" image Y if X either contains Y in its modules field, or X's "references" field contains an
505505
// assembly whose image is Y.
506506
// Say image X transitively references image Y if there is any chain of images-referencing-images which leads from X to Y.
507507
// Once the mempools for two pointers have been looked up, there are four possibilities:
@@ -677,7 +677,7 @@ check_image_set_may_reference_image_set (MonoImageSet *from, MonoImageSet *to)
677677
return valid; // All items in "to" were found in "from"
678678
}
679679

680-
// Case 4. Image FROM points to ImageSet TO: FROM transitively references *ALL* of the images listed in TO
680+
// Case 4. Image FROM points to ImageSet TO: FROM transitively references *ALL* of the "images" listed in TO
681681
static gboolean
682682
check_image_may_reference_image_set (MonoImage *from, MonoImageSet *to)
683683
{

0 commit comments

Comments
 (0)