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 cb8b8f2 commit 736d79fCopy full SHA for 736d79f
2 files changed
vlib/v/vmod/encoder.v
@@ -45,7 +45,7 @@ pub fn encode(manifest Manifest) string {
45
b.writeln(quote(manifest.repo_url))
46
}
47
if manifest.author != '' {
48
- b.write_string('\author: ')
+ b.write_string('\tauthor: ')
49
b.writeln(quote(manifest.author))
50
51
b.write_string('\tdependencies: ')
vlib/v/vmod/encoder_test.v
@@ -50,6 +50,7 @@ const mf_with_extra_fields = "Module {
version: '0.4.10'
license: 'MIT'
52
repo_url: 'https://github.com/vlang/v'
53
+ author: 'Bilbo Baggins'
54
dependencies: ['hello', 'world']
55
extra_a: ['a', 'b', 'c']
56
extra_b: [
0 commit comments