diff --git a/paper/paper.tex b/paper/paper.tex index 344881f..d806a80 100644 --- a/paper/paper.tex +++ b/paper/paper.tex @@ -355,7 +355,7 @@ \subsection{Matrix-vector product} \ma{} enables operations to communicate the buffers they need to allocate through the \lstinline|buffer_for| function. The buffer can then be reused between multiple occurrences of the same operation with \lstinline|buffered_operate!|. By default, \lstinline|buffer_for| returns \lstinline|nothing| -and \lstinline|buffered_operate!| has the following fallback: +and \lstinline|buffered_operate!| has the following fallback (where \lstinline|MA| is a shortcut for \lstinline|MutableArithmetics|): \begin{jllisting} MA.buffered_operate!(::Nothing, args...) = operate!(args...) \end{jllisting}