Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit 4e693b0

Browse files
committed
typos @README file
1 parent 955ba83 commit 4e693b0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ On SANSA Query Spark the method for partitioning a RDD[Triple] is located in [Rd
1010

1111
* RdfPartition, as the name suggests, represents a partition of the RDF data and defines two methods:
1212
matches(Triple): Boolean: This method is used to test whether a triple fits into a partition.
13-
* * Layout => TripleLayout: This method returns the [TripleLayout](https://github.com/SANSA-Stack/SANSA-RDF/blob/develop/src/main/scala/net/sansa_stack/rdf/common/partition/layout/TripleLayout.scala) associated with the partition, as explained below.
14-
* * urthermore,RdfPartitions are expected to be serializable, and to define equals and hash code.
13+
* Layout => TripleLayout: This method returns the [TripleLayout](https://github.com/SANSA-Stack/SANSA-RDF/blob/develop/src/main/scala/net/sansa_stack/rdf/common/partition/layout/TripleLayout.scala) associated with the partition, as explained below.
14+
* urthermore,RdfPartitions are expected to be serializable, and to define equals and hash code.
1515
* TripleLayout instances are used to obtain framework-agnostic compact tabular representations of triples according to a partition. For this purpose it defines the two methods:
16-
* * fromTriple(triple:Triple): Product: This method must, for a given triple, return its representation as a Product(this is the super class of all scalaTuples)
17-
* * schema:Type: This method must return the exact scala type of the objects returned by fromTriple, such as typeOf[Tuple2[String,Double]]. Hence, layouts are expected to only yield instances of one specific type.
16+
* fromTriple(triple:Triple): Product: This method must, for a given triple, return its representation as a Product(this is the super class of all scalaTuples)
17+
* schema:Type: This method must return the exact scala type of the objects returned by fromTriple, such as typeOf[Tuple2[String,Double]]. Hence, layouts are expected to only yield instances of one specific type.
1818
See the [available layouts](https://github.com/SANSA-Stack/SANSA-RDF/blob/develop/src/main/scala/net/sansa_stack/rdf/common/partition/layout) for details.
1919

2020
## Usage

0 commit comments

Comments
 (0)