Skip to content

Commit aa2ee23

Browse files
committed
updates based on code review
1 parent 7e70e25 commit aa2ee23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/core/column/isna.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ static Column make_isna_col(Column&& col) {
7979
case SType::STR64: return Column(new Isna_ColumnImpl<CString>(std::move(col)));
8080
default:
8181
throw RuntimeError() << "Function `isna` cannot be applied to a "
82-
"column of type `" << col.stype()) << "`";
82+
"column of type `" << col.stype() << "`";
8383
}
8484
}
8585

src/core/expr/fbinary/fexpr__eq__.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//------------------------------------------------------------------------------
2-
// Copyright 2019-2021 H2O.ai
2+
// Copyright 2019-2023 H2O.ai
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a
55
// copy of this software and associated documentation files (the "Software"),

src/core/expr/fnary/rowcount.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//------------------------------------------------------------------------------
2-
// Copyright 2019-2021 H2O.ai
2+
// Copyright 2019-2023 H2O.ai
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a
55
// copy of this software and associated documentation files (the "Software"),

0 commit comments

Comments
 (0)