diff --git a/doc/development/fe_guide/vuex.md b/doc/development/fe_guide/vuex.md
index 65963b959f79facda3f7c778b6b01a54f389412f..4b60ec80cb8437e0973b3a91ec65ac2643f1ab95 100644
--- a/doc/development/fe_guide/vuex.md
+++ b/doc/development/fe_guide/vuex.md
@@ -120,8 +120,8 @@ create:
 1. An action `receiveSomethingError`, to handle the error callback
 1. An action `fetchSomething` to make the request.
     1. In case your application does more than a `GET` request you can use these as examples:
-        - `PUT`: `createSomething`
-        - `POST`: `updateSomething`
+        - `POST`: `createSomething`
+        - `PUT`: `updateSomething`
         - `DELETE`: `deleteSomething`
 
 The component MUST only dispatch the `fetchNamespace` action. Actions namespaced with `request` or `receive` should not be called from the component