Skip to content

Commit 16e0ad7

Browse files
authored
Update Result.h
incorrect commenting. switched err and ok constructors
1 parent b5eb086 commit 16e0ad7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

TextExtraction/lib/graphs/Result.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ enum EResult {
88
template<typename T>
99
class Result {
1010
public:
11-
Result(); // ok
12-
Result(T inValue); // err
11+
Result(); // err
12+
Result(T inValue); // ok
1313

1414
bool IsOK();
1515
bool IsErr();

0 commit comments

Comments
 (0)