Skip to content

Commit 5ec6be6

Browse files
committed
Typo
1 parent 08e6e6c commit 5ec6be6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/ldbc/snb/datagen/dictionary/UniversityDictionary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public String getUniversityName(long university) {
195195
}
196196

197197
/**
198-
* @return The set of unviersity ids.
198+
* @return The set of university ids.
199199
* @brief Gets all the university ids.
200200
*/
201201
public Set<Long> getUniversities() {

src/main/java/ldbc/snb/datagen/generator/generators/textgenerators/TweetGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public String generateText(PersonSummary member, TreeSet<Integer> tags, Properti
7575
Double numsentences = Double.valueOf(lengthtweet.nextDouble(this.random));
7676
for (int i = 0; i < numsentences; ++i) {
7777
Double numwords = Double.valueOf(lengthsentence.nextDouble(this.random));
78-
// the number of hashtages depends on the number of words in the
78+
// the number of hashtags depends on the number of words in the
7979
// sentence
8080
int numhashtags = (int) (numwords * 0.4);
8181
for (int j = 0; j < numhashtags; ++j) {

0 commit comments

Comments
 (0)