Skip to content

Commit 04b9acd

Browse files
author
Jonathan Taylor
committed
Correcting typo
1 parent ae86c37 commit 04b9acd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cachematrix.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ makeCacheMatrix <- function(our_matrix = matrix()) {
1010

1111
set <- function(new_matrix) {
1212
our_matrix <<- new_matrix #Update our matrix to the new one
13-
computer_inverse <<- NULL #Clear the cached value as the matrix has changed (so we recompute it)
13+
computed_inverse <<- NULL #Clear the cached value as the matrix has changed (so we recompute it)
1414
}
1515

1616
get <- function() our_matrix

0 commit comments

Comments
 (0)