Skip to content

Conversation

@gewarren
Copy link
Contributor

No description provided.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR attempts to fix incorrect inheritdoc references in right shift operator documentation by changing references from op_LeftShift to op_RightShift. However, the fix is incomplete for the unsigned right shift operators.

Key Issues:

  • The Tensor.op_RightShift.cs changes are correct - arithmetic right shift operators now properly reference their own base documentation instead of left shift.
  • The Tensor.op_UnsignedRightShift.cs changes are incorrect - unsigned/logical right shift operators (>>>, >>>=) should reference op_UnsignedRightShift and op_UnsignedRightShiftAssignment, not the arithmetic right shift operators (op_RightShift, op_RightShiftAssignment).

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.

File Description
Tensor.op_RightShift.cs Correctly fixes inheritdoc references from op_LeftShift to op_RightShift for arithmetic right shift operators (>>, >>=)
Tensor.op_UnsignedRightShift.cs Incorrectly changes references from op_LeftShift to op_RightShift - should reference op_UnsignedRightShift and op_UnsignedRightShiftAssignment instead for unsigned/logical right shift operators (>>>, >>>=)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants