docs(action_list): small comments
This commit is contained in:
parent
e8338d011d
commit
f7043cc03a
2 changed files with 5 additions and 0 deletions
|
|
@ -11,12 +11,14 @@ typedef enum {
|
|||
DELETE
|
||||
} ActionType;
|
||||
|
||||
// Represents a deletion or insertion into the files text
|
||||
typedef struct {
|
||||
ActionType type;
|
||||
uint64_t line_original;
|
||||
uint64_t line_changed;
|
||||
} Action;
|
||||
|
||||
// Dynamic array of Actions
|
||||
typedef struct {
|
||||
Action* actions;
|
||||
uint64_t capacity;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue