Fix typo in src/Simd/README.md: "43-bit" → "32-bit" for NVector3i#25334
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Fixes a factual typo in the SIMD documentation for CoreGraphics.NVector3i, aligning it with the underlying native type (simd_int3 / vector_int3) and the sibling NVector2i/NVector4i entries.
Changes:
- Correct
NVector3idescription from “43-bit” to “32-bit” integers insrc/Simd/README.md.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✅ [CI Build #6303ba9] Build passed (Detect API changes) ✅Pipeline on Agent |
✅ [PR Build #6303ba9] Build passed (Build packages) ✅Pipeline on Agent |
This comment has been minimized.
This comment has been minimized.
✅ API diff for current PR / commitNET (empty diffs)✅ API diff vs stableNET (empty diffs)ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
This comment has been minimized.
This comment has been minimized.
✅ [CI Build #6303ba9] Build passed (Build macOS tests) ✅Pipeline on Agent |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
🚀 [CI Build #6303ba9] Test results 🚀Test results✅ All tests passed on VSTS: test results. 🎉 All 156 tests passed 🎉 Tests counts✅ cecil: All 1 tests passed. Html Report (VSDrops) Download macOS tests✅ Tests on macOS Monterey (12): All 5 tests passed. Html Report (VSDrops) Download Linux Build VerificationPipeline on Agent |
Line 156 of
src/Simd/README.mddescribedNVector3ias "A vector of 3 43-bit ints.", which is a factual error.NVector3iwraps the nativesimd_int3/vector_int3type, which is a vector of three 32-bit signed integers. The sibling typesNVector2iandNVector4ialready correctly say "32-bit" in the same file.Change:
43-bit→32-biton line 156 — documentation only, no code changes.