Skip to content

Commit

Permalink
docs: fix typo in base docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tale committed Feb 15, 2022
1 parent 7b43d2b commit 142a72f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ export class APTBase {
}

/**
* Get a raw string value from the Release contents
* @param {string} key Release field name to search for
* Get a raw string value from the raw contents
* @param {string} key raw field name to search for
* @returns {string?} Field value
*/
get(key: string): string | undefined {
return this.raw.get(key)
}

/**
* Retrieve the number of fields defined in the Release contents
* Retrieve the number of fields defined in the raw contents
* @returns {number} Field count
*/
get fieldCount(): number {
Expand Down

0 comments on commit 142a72f

Please sign in to comment.