Subject: | Use # instead of // in SYNOPSIS |
The SYNOPSIS has currently (v0.7.0) the following code snippet:
code_search {
my ($file, $line) = @_;
// do stuff
},
Using the C++ comment syntax here is confusing (especially because it means something different in perl), probably you should replace the // by #.