From 5108267c63729929b815f6c3b5a253ba3478f32f Mon Sep 17 00:00:00 2001 From: Mudit Sinha Date: Tue, 15 Jan 2019 19:34:39 +0530 Subject: [PATCH] Update function comments for SuccinctIndexedFileBuffer --- .../cs/succinct/buffers/SuccinctIndexedFileBuffer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/edu/berkeley/cs/succinct/buffers/SuccinctIndexedFileBuffer.java b/core/src/main/java/edu/berkeley/cs/succinct/buffers/SuccinctIndexedFileBuffer.java index 27cf3ac..6990842 100644 --- a/core/src/main/java/edu/berkeley/cs/succinct/buffers/SuccinctIndexedFileBuffer.java +++ b/core/src/main/java/edu/berkeley/cs/succinct/buffers/SuccinctIndexedFileBuffer.java @@ -47,9 +47,9 @@ public SuccinctIndexedFileBuffer(byte[] input, int[] offsets) { } /** - * Constructor to initialize SuccinctIndexedBuffer from input byte array and offsets corresponding to records. + * Constructor to initialize SuccinctIndexedBuffer from input char array and offsets corresponding to records. * - * @param input The input byte array. + * @param input The input char array. * @param offsets Offsets corresponding to records. * @param conf SuccinctConfiguration */ @@ -59,9 +59,9 @@ public SuccinctIndexedFileBuffer(char[] input, int[] offsets, SuccinctConfigurat } /** - * Constructor to initialize SuccinctIndexedBuffer from input byte array and offsets corresponding to records. + * Constructor to initialize SuccinctIndexedBuffer from input char array and offsets corresponding to records. * - * @param input The input byte array. + * @param input The input char array. * @param offsets Offsets corresponding to records. */ public SuccinctIndexedFileBuffer(char[] input, int[] offsets) {