Skip to content

Commit adbb3ce

Browse files
committed
chore: pull latest libsession-util and fix typo
1 parent 7b126e5 commit adbb3ce

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

types/multi_encrypt/multi_encrypt.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ declare module 'libsession_util_nodejs' {
2525
export type MultiEncryptActionsCalls = MakeWrapperActionCalls<MultiEncryptWrapper>;
2626

2727
/**
28-
* To be used inside the web worker only (calls are synchronous and won't work asynchrously)
28+
* To be used inside the web worker only (calls are synchronous and won't work asynchronously)
2929
*/
3030
export class MultiEncryptWrapperNode {
3131
public static multiEncrypt: MultiEncryptWrapper['multiEncrypt'];

types/shared.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ declare module 'libsession_util_nodejs' {
100100
type MakeGroupActionCall<A extends BaseConfigWrapper, B extends keyof A> = [
101101
B,
102102
...Parameters<A[B]>
103-
]; // all of the groupActionCalls need the pubkey of the group we are targetting
103+
]; // all of the groupActionCalls need the pubkey of the group we are targeting
104104

105105
type AsyncGroupWrapper<T extends (...args: any) => any> = (
106106
groupPk: GroupPubkeyType,
@@ -140,7 +140,7 @@ declare module 'libsession_util_nodejs' {
140140
export type Uint8ArrayLen64 = Uint8Array;
141141
export type Uint8ArrayLen32 = Uint8Array;
142142
export type Uint8ArrayLen36 = Uint8Array; // subaccount tokens are 36 bytes long
143-
export type Uint8ArrayLen100 = Uint8Array; // subaccount authdata are 100 bytes long
143+
export type Uint8ArrayLen100 = Uint8Array; // subaccount auth data are 100 bytes long
144144

145145
export type EncryptionDomain = 'SessionGroupKickedMessage';
146146

0 commit comments

Comments
 (0)