Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Jun 5, 2024
1 parent 3f1dd5c commit 6d4fda8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/attributes.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const uuid_attribute = {
/**
* @type {AttributeDefinition}
*/
export const empty_attiribute = { ...default_attribute, type: "boolean" };
export const empty_attribute = { ...default_attribute, type: "boolean" };

/**
* @type {AttributeDefinition}
Expand Down
6 changes: 4 additions & 2 deletions src/pull-request.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
body_attribute,
title_attribute,
boolean_attribute,
empty_attiribute
empty_attribute
} from "./attributes.mjs";

/**
Expand Down Expand Up @@ -130,10 +130,12 @@ export class PullRequest extends OwnedObject {
*/
draft: boolean_attribute,
dry: boolean_attribute,
empty: empty_attiribute
empty: empty_attribute
};
}

/** @type {Branch} */ source;

constructor(source, owner, name, options) {
let state = "OPEN";

Expand Down

0 comments on commit 6d4fda8

Please sign in to comment.