Skip to content

Commit

Permalink
Removes _ from climb structure name
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrosz committed Jul 17, 2024
1 parent af4623a commit 426daf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion climb.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "str_util.h"
#include "strarr_util.h"

struct Climb_
struct Climb
{
const char *name;
const char *description;
Expand Down
2 changes: 1 addition & 1 deletion climb.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stddef.h>

typedef struct Climb_ Climb;
typedef struct Climb Climb;

Climb *Climb_new();
void Climb_free(Climb *);
Expand Down

0 comments on commit 426daf5

Please sign in to comment.