Skip to content

Commit 7c91039

Browse files
committed
fix typo
1 parent 02f2569 commit 7c91039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c_src/matrix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ nif_multiply_list(ErlNifEnv *env, int argc, const ERL_NIF_TERM argv[]) {
354354
// get the length of the list. Bail early if this fails (not a list)
355355
if ( !enif_get_list_length(env, tail_term, &list_len) ) {return enif_make_badarg(env);}
356356

357-
// initilize c to identity
357+
// initialize c to identity
358358
memcpy( product[0], matrix_identity, MATRIX_SIZE );
359359

360360
// loop the list, multiplying each array into c

0 commit comments

Comments
 (0)