Skip to content

Commit

Permalink
Javadoc corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee Rhodes committed Oct 5, 2016
1 parent 955b018 commit 01d0046
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion memory/src/main/java/com/yahoo/memory/Memory.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* The methods of this interface leverage the capabilities of the sun.misc.Unsafe class.
*
* <p>In contrast to the <i>java.nio.ByteBuffer</i> classes, which were designed for native
* streaming I/O and include concepts such as <i>position, limit, mark, flip,</i> and <i>rewind</i>,
* streaming I/O and include concepts such as <i>position, limit, mark, flip</i> and <i>rewind</i>,
* this interface specifically bypasses these concepts and instead provides a rich collection of
* primitive, bit, array and copy methods that access the data directly from a single byte offset.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @author Lee Rhodes
* @author Kevin Lang
*/
public class DoublesUpdateImpl {
class DoublesUpdateImpl {

static void growBaseBuffer(final DoublesSketch sketch) { //n has not been incremented yet
final double[] baseBuffer = sketch.getCombinedBuffer(); //in this case it is just the BB
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @author Jon Malkin
*/
public class SamplingUtil {
class SamplingUtil {

public static final Random rand = new Random();

Expand Down

0 comments on commit 01d0046

Please sign in to comment.