From b5c863fbd97b6ce066cd10c44160bb3aa83adb8e Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Mon, 30 Jan 2017 19:59:15 -0600 Subject: [PATCH] one char typo fix --- R/nanotime.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/nanotime.R b/R/nanotime.R index 0a45b4c..5d79673 100644 --- a/R/nanotime.R +++ b/R/nanotime.R @@ -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)