diff --git a/docs/Locale.md b/docs/Locale.md
index d5d6640..b580454 100644
--- a/docs/Locale.md
+++ b/docs/Locale.md
@@ -40,16 +40,16 @@ locale.set('en-US')
locale.subscribe(() => console.log('locale change'))
```
-### `$loading`
+### `$isLoading`
-While changing the `$locale`, the `$loading` store can be used to detect if the app is currently fetching any enqueued message definitions.
+While changing the `$locale`, the `$isLoading` store can be used to detect if the app is currently fetching any enqueued message definitions.
```svelte
-{#if loading}
+{#if $isLoading}
Please wait...
{:else}
@@ -57,4 +57,4 @@ While changing the `$locale`, the `$loading` store can be used to detect if the
{/if}
```
-> `$loading` will only be `true` if fetching takes more than 200ms.
+> `$isLoading` will only be `true` if fetching takes more than 200ms.