Skip to content

Commit

Permalink
one char typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jan 31, 2017
1 parent ca49b22 commit b5c863f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/nanotime.R
Expand Up @@ -153,7 +153,7 @@ format.nanotime <- function(x,
}

##' @rdname nanotime
index2char.nanotimeo <- function(x, frequency = NULL, ...) {
index2char.nanotime <- function(x, frequency = NULL, ...) {
bigint <- as.integer64(x)
secs <- as.integer64(bigint / as.integer64(1000000000))
nanos <- bigint - secs * as.integer64(1000000000)
Expand Down

0 comments on commit b5c863f

Please sign in to comment.