Skip to content

Commit

Permalink
Update Result.h
Browse files Browse the repository at this point in the history
incorrect commenting. switched err and ok constructors
  • Loading branch information
galkahana authored Dec 18, 2023
1 parent b5eb086 commit 16e0ad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TextExtraction/lib/graphs/Result.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ enum EResult {
template<typename T>
class Result {
public:
Result(); // ok
Result(T inValue); // err
Result(); // err
Result(T inValue); // ok

bool IsOK();
bool IsErr();
Expand Down

0 comments on commit 16e0ad7

Please sign in to comment.