Skip to content

Commit 1350232

Browse files
committed
chore: litning
1 parent d5b0b39 commit 1350232

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/utils/src/utils/arrayify.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('arrayify', () => {
99
expect(arrayify('0x00010203')).toEqual(new Uint8Array([0, 1, 2, 3]));
1010
});
1111

12-
it('returns Uint8Array from Buffer', () => {
12+
it('returns Uint8Array from Buffer', () => {
1313
expect(arrayify(Buffer.from('20'))).toEqual(new Uint8Array([50, 48]));
1414
});
1515

packages/utils/src/utils/arrayify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { FuelError, ErrorCode } from '@fuel-ts/errors';
22
import type { BytesLike } from 'ethers';
33

44
/**
5-
* Converts a bytes-like value to a `Uint8Array`.
5+
* Converts a bytes-like value to a `Uint8Array`.
66
*
77
* @param value - the value to convert to a Uint8Array
88
* @returns the Uint8Array

0 commit comments

Comments
 (0)