diff --git a/docs/blockchain/general/antelope-ultra/public-and-private-keys.md b/docs/blockchain/general/antelope-ultra/public-and-private-keys.md
index d1b8456385..feea67bb5e 100644
--- a/docs/blockchain/general/antelope-ultra/public-and-private-keys.md
+++ b/docs/blockchain/general/antelope-ultra/public-and-private-keys.md
@@ -25,7 +25,7 @@ A private key, a secret alphanumeric code, is used to digitally sign transaction
### Generate a Keypair
-In most cases we don't recommend generating private keys online. However, if you are using this for our test network it is safe to use there. Otherwise, seek out some of the additional ways to generate a key pair safely. Such as using [cleos](../../blockchain/general/tools/cleos.md).
+In most cases we don't recommend generating private keys online. However, if you are using this for our test network it is safe to use there. Otherwise, seek out some of the additional ways to generate a key pair safely. Such as using [cleos](../tools/cleos.md).
@@ -33,7 +33,7 @@ In most cases we don't recommend generating private keys online. However, if you
### Alternative Ways to Generate Keypairs
-* [Ultra.io VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ultraio.ultra-cpp)
-* [EOS Authority](https://eosauthority.com/generate_eos_private_key)
-* [EOSCafe Offline Generator](https://github.com/eoscafe/eos-key)
-* [NadeJDE Key Generator](https://nadejde.github.io/eos-token-sale/)
\ No newline at end of file
+- [Ultra.io VSCode Extension](https://marketplace.visualstudio.com/items?itemName=ultraio.ultra-cpp)
+- [EOS Authority](https://eosauthority.com/generate_eos_private_key)
+- [EOSCafe Offline Generator](https://github.com/eoscafe/eos-key)
+- [NadeJDE Key Generator](https://nadejde.github.io/eos-token-sale/)
diff --git a/docs/products/ultra-wallet/detect-wallet.md b/docs/products/ultra-wallet/detect-wallet.md
index d0c1d1fcf7..fa53b4b215 100644
--- a/docs/products/ultra-wallet/detect-wallet.md
+++ b/docs/products/ultra-wallet/detect-wallet.md
@@ -7,7 +7,7 @@ outline: [0, 4]
# Detecting the Ultra Wallet
-To detect if a user has already installed the Ultra Wallet browser extension the web application should run over **HTTPS** and check for the existence of an `**ultra**` object in the `window` variable.
+To detect if a user has already installed the Ultra Wallet browser extension the web application should run over **HTTPS** and check for the existence of an `ultra` object in the `window` variable.
```JavaScript
if ('ultra' in window) {
@@ -16,7 +16,7 @@ if ('ultra' in window) {
```
This code can be called when you want (for example, when clicking on a button or a link).
-If you want this check to be carried out automatically when the web page loads, you will need to integrate it into the '**load**' event in the `window` variable:
+If you want this check to be carried out automatically when the web page loads, you will need to integrate it into the `load` event in the `window` variable:
```JavaScript
if(document.readyState !== 'complete') {
@@ -30,6 +30,6 @@ function afterWindowLoaded(){
console.log('Page load: Ultra Wallet is installed!');
} else {
console.log('Page load: No Ultra Wallet extension detected!');
- }
+ }
}
```