Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/json_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ typedef enum {

typedef struct JsonObject JsonObject;
typedef struct JsonValue JsonValue;
// forward decleration for, circular dependencies
// forward declaration for, circular dependencies

struct JsonValue {
JsonType type;
Expand Down Expand Up @@ -43,4 +43,4 @@ JsonValue* conduit_parse_json(const char* json_string);
void json_free_value(JsonValue* value);
void json_free_object(JsonObject* obj);

#endif // JSON_PARSER_H
#endif // JSON_PARSER_H
4 changes: 2 additions & 2 deletions src/failures.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const char* get_error_message(ErrorCode code){
return "Buffer Overflowed";
case ERR_RECEIVING_DATA:
return "Error Revieving data";
defualt:
default:
return "Unknown Error";
}
}
}