Skip to content

Commit f737137

Browse files
MachinisteWebposva
authored andcommitted
[Doc FR]: September minor updates (#968)
* Review FR with officials terms Signed-off-by: Bruno Lesieur <[email protected]> * Update `NPM` to `npm` Signed-off-by: Bruno Lesieur <[email protected]> * la devient le (@flyusfly) Signed-off-by: Bruno Lesieur <[email protected]> * New core-concepts.md file Signed-off-by: Bruno Lesieur <[email protected]> * Update book.json using a copy/past from en version Signed-off-by: Bruno Lesieur <[email protected]> * Remove book.json Signed-off-by: Bruno Lesieur <[email protected]> * Add book.json Signed-off-by: Bruno Lesieur <[email protected]> * Add `createNamespacedHelpers` french translation Signed-off-by: Bruno Lesieur <[email protected]> * Change http link to https Signed-off-by: Bruno Lesieur <[email protected]> * September updates Signed-off-by: Bruno Lesieur <[email protected]> * Fix small errors Signed-off-by: Bruno Lesieur <[email protected]>
1 parent c87b72f commit f737137

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/fr/mutations.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ mutations: {
4848
}
4949
}
5050
```
51+
5152
``` js
5253
store.commit('increment', {
5354
amount: 10

docs/fr/testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Les mutations sont très simples à tester, puisque ce sont de simples fonctions
99
``` js
1010
const state = { ... }
1111

12-
// exporter les mutations en tant qu'export nommé
12+
// exporter `mutations` en tant qu'export nommé
1313
export const mutations = { ... }
1414

1515
export default new Vuex.Store({
@@ -32,7 +32,7 @@ export const mutations = {
3232
import { expect } from 'chai'
3333
import { mutations } from './store'
3434

35-
// assignement des mutations par déstructuration
35+
// assignement de `mutations` par déstructuration
3636
const { increment } = mutations
3737

3838
describe('mutations', () => {

0 commit comments

Comments
 (0)