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
Currently, the codebase is mixing the return patterns, using both (value, error) and (pointer, error) in different places. To improve consistency and maintain best practices, we should standardize the return pattern to always return a pointer and an error, instead of mixing value returns with error.
The text was updated successfully, but these errors were encountered:
Currently, the codebase is mixing the return patterns, using both
(value, error)
and(pointer, error)
in different places. To improve consistency and maintain best practices, we should standardize the return pattern to always return a pointer and an error, instead of mixing value returns with error.The text was updated successfully, but these errors were encountered: