Skip to content

Commit 10a86fa

Browse files
authored
Fixes incorrect enum value in documentation example
1 parent f17626e commit 10a86fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ enum HttpStatus_Code
8383
namespace HttpStatus {
8484
enum class Code
8585
{
86-
OK = 200,
87-
Forbidden = 404
86+
OK = 200,
87+
NotFound = 404
8888
// ...
8989
};
9090
}
@@ -95,8 +95,8 @@ enum class Code
9595
namespace HttpStatus {
9696
enum Code
9797
{
98-
OK = 200,
99-
Forbidden = 404
98+
OK = 200,
99+
NotFound = 404
100100
// ...
101101
};
102102
}

0 commit comments

Comments
 (0)