Skip to content

Commit 993f2c7

Browse files
committed
fix misspelling of successful
1 parent 640902e commit 993f2c7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ To do so you have to go to your exchange and create an API key. If the exchange
184184

185185
Click the Person Icon on the top right menu and then choose "User Settings". This will take you to your user settings page. Under the exchange settings sections, select your exchange from the dropdown menu. Then copy and paste the `API Key` and the `API Secret` in the respective text fields and press submit.
186186

187-
If all went well, then you will get a confirmation that the connection was succesfull. If not please doublecheck that the key and secret are correct.
187+
If all went well, then you will get a confirmation that the connection was successful. If not please doublecheck that the key and secret are correct.
188188

189189
### Adding Fiat Balances
190190

rotkehlchen/data_handler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def compress_and_encrypt_db(self, password):
284284
def decompress_and_decrypt_db(self, password, encrypted_data):
285285
"""Decrypt and decompress the encrypted data we receive from the server
286286
287-
If succesfull then replace our local Database"""
287+
If successful then replace our local Database"""
288288
decrypted_data = decrypt(password.encode(), encrypted_data)
289289
decompressed_data = zlib.decompress(decrypted_data)
290290
self.db.import_unencrypted(decompressed_data, password)

rotkehlchen/rotkehlchen.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def try_premium_at_start(self, api_key, api_secret, create_new, sync_approval, u
173173
logger.debug('User approved data sync from server')
174174
if self.sync_data_from_server():
175175
if create_new:
176-
# if we succesfully synced data from the server and this is
176+
# if we successfully synced data from the server and this is
177177
# a new account, make sure the api keys are properly stored
178178
# in the DB
179179
self.data.db.set_rotkehlchen_premium(api_key, api_secret)

ui/taxreport.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function export_csv_callback(event) {
3939
showError('Exporting History to CSV error', res['message']);
4040
return;
4141
}
42-
showInfo('Success', 'History exported to CVS succesfully');
42+
showInfo('Success', 'History exported to CVS successfully');
4343
});
4444
});
4545
}

ui/usersettings.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function setup_premium_callback(event) {
8282
showError('Premium Credentials Error', res['message']);
8383
return;
8484
}
85-
showInfo('Premium Credentials', 'Succesfully set Premium Credentials');
85+
showInfo('Premium Credentials', 'Successfully set Premium Credentials');
8686
disable_key_entries('premium_', 'premium', '');
8787
settings.has_premium = true;
8888
add_premium_settings();
@@ -133,7 +133,7 @@ function setup_exchange_callback(event) {
133133
showError('Exchange Removal Error', 'Error at removing ' + exchange_name + ' exchange: ' + res['message']);
134134
return;
135135
}
136-
// Exchange removal from backend succesfull
136+
// Exchange removal from backend successful
137137
enable_key_entries('', 'exchange');
138138
$('#'+exchange_name+'_badge').remove();
139139
var index = settings.connected_exchanges.indexOf(exchange_name);
@@ -168,7 +168,7 @@ function setup_exchange_callback(event) {
168168
showError('Exchange Setup Error', 'Error at setup of ' + exchange_name + ': ' + res['message']);
169169
return;
170170
}
171-
// Exchange setup in the backend was succesfull
171+
// Exchange setup in the backend was successful
172172
disable_key_entries('', 'exchange', exchange_name);
173173
settings.connected_exchanges.push(exchange_name);
174174
let str = ExchangeBadge({name: exchange_name, css_class: 'exchange-icon'});

0 commit comments

Comments
 (0)