Skip to content
Snippets Groups Projects
Commit 9cbeb3c8 authored by Laurent Gil's avatar Laurent Gil
Browse files

Fix the regexp to catch the content of the tag @see

parent 77512aa9
No related branches found
No related tags found
No related merge requests found
......@@ -268,7 +268,7 @@ while (<SQLFILE>) {
fill_documentation ($1,$2);
}
# See other tables
elsif ($doc =~ /^\@(see)\s*(.+)$/i) {
elsif ($doc =~ /^\@(see)\s*(\w+)\s*$/i) {
fill_documentation ($1,$2);
}
# Addtional information block
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment