Skip to content

Commit f0e55d0

Browse files
committed
minor
1 parent 0f247fb commit f0e55d0

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

cachematrix.R

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Matrix object with cached version of inverse function
1+
## Matrix object and cached version for inverse function
22
##
33
## Example usage:
44
## x <- makeCacheMatrix()
@@ -7,8 +7,7 @@
77
## x$get()
88
## cacheSolve(x) # first run can be slow
99

10-
## Constructor for the matrix with cached inverse function
11-
10+
## Constructor for the matrix with cached inverse
1211
makeCacheMatrix <- function(x = matrix()) {
1312
ci <- NULL
1413

@@ -35,7 +34,6 @@ makeCacheMatrix <- function(x = matrix()) {
3534

3635

3736
## returns the inverse of the matrix, result is cached after the first run
38-
3937
cacheSolve <- function(x, ...) {
4038
ci <- x$getinverse()
4139
if (!is.null(ci)) {

0 commit comments

Comments
 (0)