Skip to content

Commit

Permalink
Fix spelling errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannah Bast committed Dec 13, 2024
1 parent 5506e5d commit 18e5558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/engine/Describe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ VariableToColumnMap Describe::computeVariableToColumnMap() const {

// A helper function for the recursive BFS. Return those `Id`s from `input` (an
// `IdTable` with one column) that are blank nodes and not in `alreadySeen`,
// with duplicates removed. The retuned `Id`s are added to `alreadySeen`.
// with duplicates removed. The returned `Id`s are added to `alreadySeen`.
static IdTable getNewBlankNodes(
const auto& allocator, ad_utility::HashSetWithMemoryLimit<Id>& alreadySeen,
std::span<Id> input) {
Expand Down
2 changes: 1 addition & 1 deletion test/engine/DescribeTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ TEST(Describe, recursiveBlankNodes) {
EXPECT_THAT(table.getColumn(2), numUnique(5));
}

// A DESCRIBE query with a fixed IRI and a variable in the DESCIRBE clause, and
// A DESCRIBE query with a fixed IRI and a variable in the DESCRIBE clause, and
// various blank nodes that need to be expanded.
TEST(Describe, describeWithVariable) {
auto qec = getQec(
Expand Down

0 comments on commit 18e5558

Please sign in to comment.