JSDocs: Separate different options with ' / ' rather than '|'.

This commit is contained in:
Jürg Lehni 2011-06-07 00:01:07 +01:00
parent a5426403eb
commit 494c2f4da0

View file

@ -59,7 +59,7 @@ function Link() {
thisLink.alias = symbolNames[i];
links.push(thisLink._makeSymbolLink(symbolNames[i], parameters));
}
return prematch+links.join("|")+postmatch;
return prematch+links.join(" / ")+postmatch;
}
);
}