From: Maxim Evtush Date: Mon, 10 Feb 2025 22:21:31 +0000 (+0100) Subject: fix: typos in documentation files (llama/11791) X-Git-Tag: upstream/1.7.4+203~83 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=14d7c0368d5d6b9c0797557bc36e7c6a9bac0dc4;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp fix: typos in documentation files (llama/11791) * Update ggml.c * Update arg.cpp * Update speculative.h --- diff --git a/ggml/src/ggml.c b/ggml/src/ggml.c index 3b486154..e9f3420c 100644 --- a/ggml/src/ggml.c +++ b/ggml/src/ggml.c @@ -1379,7 +1379,7 @@ bool ggml_are_same_stride(const struct ggml_tensor * t0, const struct ggml_tenso (t0->nb[3] == t1->nb[3]); } -// check if t1 can be represented as a repeatition of t0 +// check if t1 can be represented as a repetition of t0 bool ggml_can_repeat(const struct ggml_tensor * t0, const struct ggml_tensor * t1) { static_assert(GGML_MAX_DIMS == 4, "GGML_MAX_DIMS is not 4 - update this function");