You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### TL;DR
Renamed `Feedback` method to `SetFeedback` in the Session struct.
### What changed?
Changed the method name from `Feedback` to `SetFeedback` in the `Session` struct to better reflect that this method is setting feedback rather than retrieving it. The implementation remains the same, still calling `s.commit("add-feedback", f)`.
### How to test?
1. Update any code that calls `session.Feedback()` to use `session.SetFeedback()` instead
2. Verify that feedback functionality continues to work as expected
3. Run existing tests to ensure they pass with the renamed method
### Why make this change?
The new name `SetFeedback` more clearly communicates the method's purpose as a setter rather than a getter. This improves code readability and follows better naming conventions for methods that modify state.
0 commit comments