We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0872289 commit fb47859Copy full SHA for fb47859
expand.py
@@ -51,7 +51,7 @@ def output_file(filename):
51
52
res = []
53
with open(src_path+filename+'.rs', 'r') as f:
54
- res.append('mod {}{{'.format(filename))
+ res.append('pub mod {} {{'.format(filename))
55
56
for line in f:
57
res.append(line.rstrip())
0 commit comments