Skip to content

Commit 9a68735

Browse files
committed
Remove 'identificator' from config and fix few files
1 parent 2fcc33b commit 9a68735

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,4 @@ ba = "ba"
6666
countr = "countr"
6767
helo = "helo"
6868
nd = "nd"
69-
identificator = "identificator"
7069

src/core/algorithms/ind/spider/attribute.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ class Attribute {
2828
using Iterator = model::ColumnDomainIterator;
2929

3030
protected:
31-
AttributeIndex id_; /* attribute unique identificator */
32-
AttributeIndex attr_count_; /* attribute unique identificator */
31+
AttributeIndex id_; /* attribute unique identifier */
32+
AttributeIndex attr_count_; /* attribute unique identifier */
3333
Iterator it_; /* domain iterator */
3434

3535
public:

src/tests/benchmark/benchmark_results_io.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class BenchmarkResultsIO {
9191
std::ostringstream date;
9292
// We use ancient GCC in CI, which doesn't support calendars, so I have to use C-style
9393
// output.
94-
// XXX(senichenkov): remove workaruond when we drop GCC-10 support
94+
// XXX(senichenkov): remove workaround when we drop GCC-10 support
9595
#if defined(__cpp_lib_chrono) && (__cpp_lib_chrono >= 201907L)
9696
std::chrono::year_month_day ymd = std::chrono::floor<std::chrono::days>(now);
9797
date << ymd;

0 commit comments

Comments
 (0)