The following bib entry hat three authors but the last one is separated with , and instead of just and. Is it possible to remove that comma?
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[style=alphabetic,maxnames=10]{biblatex}
\addbibresource{references.bib}
\usepackage{filecontents}
\begin{filecontents}{references.bib}
@book{key,
author = {Baur, S and Schmid, A and Schur, B.},
year = {2001},
title = {Title},
publisher = {Publisher},
}
\end{filecontents}
\begin{document}
\nocite{*}
\printbibliography[heading=bibintoc]
\end{document}


.afterSandA. – Sigur Feb 18 '18 at 14:04author = {Baur, S and Schmid, A and Schur, B.},with twoands is the only correct way to give a list of three names. The output will usually not contain several 'and's. – moewe Feb 19 '18 at 13:03