mirror of
https://github.com/nushell/nushell.git
synced 2025-08-12 09:21:26 +02:00
Replace crate visibility identifier with pub(crate)
Result of running: find src -name *.rs -exec sed -i 's/crate /pub(crate) /g' {} \;
This commit is contained in:
@ -14,7 +14,7 @@ pub struct EntriesView {
|
||||
}
|
||||
|
||||
impl EntriesView {
|
||||
crate fn from_value(value: &Value) -> EntriesView {
|
||||
pub(crate) fn from_value(value: &Value) -> EntriesView {
|
||||
let descs = value.data_descriptors();
|
||||
let mut entries = vec![];
|
||||
|
||||
|
Reference in New Issue
Block a user