Skip to content

Commit

Permalink
fix grammatical error
Browse files Browse the repository at this point in the history
  • Loading branch information
jer-echo committed Jun 23, 2022
1 parent f52b0e0 commit 054410c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
/**
* @class Numesis
* Create custom Number System
* Compatible with:
* - Deno
* - NodeJS
* - Browser
* - Typescript
* @author Jericho Aquino
* @version 1.0.2
* @license Apache-2.0
Expand Down Expand Up @@ -50,7 +55,7 @@
* A public method that encodes n paramenter to custom number system
* @param {number|string} args numbers that will be decoded
*
* @return {String} joined of array encoded string
* @return {String} encoded string
*/
encode(...args: Array<number | string>): string {
return args
Expand All @@ -71,4 +76,6 @@
* Alias for encode
*/
e: Function = this.encode.bind(this)
}
}

export default Numesis

0 comments on commit 054410c

Please sign in to comment.