From: Jacob Lifshay Date: Thu, 18 May 2023 22:44:49 +0000 (-0700) Subject: make indentation consistent X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=58db0aa1eafd8e1e261959c0495de43c015e5e25;p=libreriscv.git make indentation consistent --- diff --git a/simple_v_extension/daxpy_example.mdwn b/simple_v_extension/daxpy_example.mdwn index edfdddbfc..d99c3b58f 100644 --- a/simple_v_extension/daxpy_example.mdwn +++ b/simple_v_extension/daxpy_example.mdwn @@ -2,8 +2,8 @@ ``` void daxpy(size_t n, double a, const double x[], double y[]) { - for (size_t i = 0; i < n; i++) - y[i] = a*x[i] + y[i]; + for (size_t i = 0; i < n; i++) + y[i] = a*x[i] + y[i]; } ```