File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ mod history;
16
16
mod job_commands;
17
17
mod loop_control;
18
18
pub mod option;
19
- pub mod parameter ;
19
+ pub mod variable ;
20
20
mod printf;
21
21
mod pwd;
22
22
mod read;
@@ -108,15 +108,15 @@ impl ShellCore {
108
108
self . builtins . insert ( "wait" . to_string ( ) , job_commands:: wait) ;
109
109
110
110
self . substitution_builtins
111
- . insert ( "export" . to_string ( ) , parameter :: export) ;
111
+ . insert ( "export" . to_string ( ) , variable :: export) ;
112
112
self . substitution_builtins
113
- . insert ( "readonly" . to_string ( ) , parameter :: readonly) ;
113
+ . insert ( "readonly" . to_string ( ) , variable :: readonly) ;
114
114
self . substitution_builtins
115
- . insert ( "typeset" . to_string ( ) , parameter :: declare) ;
115
+ . insert ( "typeset" . to_string ( ) , variable :: declare) ;
116
116
self . substitution_builtins
117
- . insert ( "declare" . to_string ( ) , parameter :: declare) ;
117
+ . insert ( "declare" . to_string ( ) , variable :: declare) ;
118
118
self . substitution_builtins
119
- . insert ( "local" . to_string ( ) , parameter :: local) ;
119
+ . insert ( "local" . to_string ( ) , variable :: local) ;
120
120
}
121
121
}
122
122
File renamed without changes.
You can’t perform that action at this time.
0 commit comments