Skip to content

Commit bc4a387

Browse files
committed
Merge pull request filodb#34 from darkjh/feature/fix_scaladoc
fix scaladoc issues
2 parents 6446dfe + c31a18b commit bc4a387

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

coordinator/src/main/scala/filodb.coordinator/NodeCoordinatorActor.scala

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ object NodeCoordinatorActor {
4444
* Sets up ingestion for a given dataset, version, and schema of columns.
4545
* The dataset and columns must have been previously defined.
4646
*
47-
* @defaultPartitionKey if Some(key), a null value in partitioning column will cause key to be used.
48-
* if None, then NullPartitionValue will be thrown when null value
49-
* is encountered in a partitioning column.
47+
* @param defaultPartitionKey
48+
* if Some(key), a null value in partitioning column will cause key to be used.
49+
* if None, then NullPartitionValue will be thrown when null value is encountered
50+
* in a partitioning column.
5051
* @return BadSchema if the partition column is unsupported, sort column invalid, etc.
5152
*/
5253
case class SetupIngestion(dataset: String,

core/src/main/scala/filodb.core/columnstore/Segment.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import filodb.core.metadata.Column
1313
/**
1414
* A Segment represents columnar chunks for a given dataset, partition, range of keys, and columns.
1515
* It also contains an index to help read data out in sorted order.
16-
* For more details see [[doc/sorted_chunk_merge.md]].
16+
* For more details see `doc/sorted_chunk_merge.md`.
1717
*/
1818
trait Segment[K] {
1919
val keyRange: KeyRange[K]

0 commit comments

Comments
 (0)