**Where** perlfunc.pod. **Description** Commit 9bdeda4bef42d3cee14f754d72d12a160a52967a has messed up pod markup in perlfunc.pod. Just for illustration for what went wrong, let's see on POD for split function. Before commit: ``` As a special case for L<C<split>|/split E<sol>PATTERNE<sol>,EXPR,LIMIT>, ``` After commit: ``` As a special case for C<split>PATTERNE<sol>,EXPR,LIMIT>, ``` First `E<sol>` disappeared, symbol `>` stayed at the end. I suppose this is not the only problem with that commit, and it should be checked.