Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change Storage::get to pub(crate) (#1100)
### What Change `Storage::get` from `pub` to `pub(crate)`. ### Why The function is intended to be an internal function that the instance, temporary, and persistent types call into. The `Storage::has` and `Storage::set` are marked as `pub(crate)`. Looks like we accidentally marked it as `pub`.
- Loading branch information