Address javadoc warning

This commit is contained in:
Alexandre Archambault 2017-05-06 16:55:27 +02:00
parent 1d06921038
commit efc280be06
1 changed files with 5 additions and 5 deletions

View File

@ -16,11 +16,11 @@ object Tree {
def init[E, O](seq: Seq[E])(f: E => O) =
seq.dropRight(1).map(f)
/**
* Add elements to the stack
* @param elems elements to add
* @param isLast a list that contains whether an element is the last in its siblings or not.
*/
/*
* Add elements to the stack
* @param elems elements to add
* @param isLast a list that contains whether an element is the last in its siblings or not.
*/
def childrenWithLast(elems: Seq[T],
isLast: Seq[Boolean]): Seq[(T, Seq[Boolean])] = {