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
The need to do this might go away when Ruby v3.4 is released, because then String literals will be frozen by default.
This doesn't appear to be true. Instead, any string literals which are not specifically marked as frozen will display a warning if mutated, but they can still be mutated.
This suggests it might be a good idea to add the magic comment to all files: # frozen_string_literal: true...?
Some useful context in https://gist.github.com/fxn/bf4eed2505c76f4fca03ab48c43adc72.
The text was updated successfully, but these errors were encountered: