Skip to content

Commit 3541ffa

Browse files
authored
Merge pull request #819 from maximevtush/main
fix: typos in documentation files
2 parents 69ec5af + 71b3a79 commit 3541ffa

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/i18n/en/delegator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const translation = {
4949
existingDelegationTooltip: 'The amount of tokens that you have already delegated to this Node Operator',
5050
existingDelegation: 'Your Existing Delegation',
5151
selectTooltip:
52-
'Select the source of the funds that you would like to delegate. This can be directly from your wallet, or by re-delegating tokens from an exisiting delegation.',
52+
'Select the source of the funds that you would like to delegate. This can be directly from your wallet, or by re-delegating tokens from an existing delegation.',
5353
delegateFromYourselfInfo: 'Once confirmed, your funds will be delegated to {{indexerName}} from the next era.',
5454
redelegateInfo:
5555
'Once confirmed, your funds will be re-delegated from operator {{reIndexerName}} to {{indexerName}} from the next era.',

src/i18n/en/indexer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ const translation = {
138138
socialCredibility: 'social credibility',
139139
tooltip: {
140140
rank: 'The ranking of the Node Operator compared to all other Node Operators based of a variety of factors. A ranking of 1 means that they have historically operated as the best Node Operator, however this does not indicate future performance.',
141-
uptime: 'Based on the avaliability of an Node Operator’s proxy service endpoint overtime',
141+
uptime: 'Based on the availability of an Node Operator’s proxy service endpoint overtime',
142142
ownStake: `The percentage of all staked ${TOKEN} that is the Node Operator’s own SQT. Higher score is better.`,
143143
delegated:
144144
'The percentage of the Node Operator’s total delegation that is the Node Operator’s own SQT. Higher score is better.',

src/utils/limitation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ export const makeCacheKey = (
2020
options: {
2121
prefix?: string;
2222
suffix?: string;
23-
type?: string; // maybe need to make a const varible. gerneral/sqt/flexplan such as.
23+
type?: string; // maybe need to make a const varible. general/sqt/flexplan such as.
2424
} = {},
2525
) => {
26-
const { prefix = import.meta.env.MODE, type = 'gerneral', suffix = '' } = options;
26+
const { prefix = import.meta.env.MODE, type = 'general', suffix = '' } = options;
2727
return `${prefix}-${type}-${key}-${suffix}`;
2828
};
2929

0 commit comments

Comments
 (0)