Skip to content

Commit

Permalink
Merge pull request #1746 from camlafit/patch-2
Browse files Browse the repository at this point in the history
Typo on php code in  new-system.md
  • Loading branch information
matthieu-rolland committed Nov 8, 2023
2 parents b322d4a + c0c56e9 commit 5fac1a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/creation/module-translation/new-system.md
Expand Up @@ -129,7 +129,7 @@ class MyModule extends Module
$this->version = '1.0.0';
$this->author = 'Me';
$this->displayName = $this->trans('My module', [], 'Modules.Mymodule.Mymodule');
$this->description = $this->trans('Description of my module. Made by: %author%, Current Version: %version%', ['%version%' => $this->version ,'%author% => $this->author], 'Modules.Mymodule.Mymodule');
$this->description = $this->trans('Description of my module. Made by: %author%, Current Version: %version%', ['%version%' => $this->version ,'%author%' => $this->author], 'Modules.Mymodule.Mymodule');
}
}
```
Expand Down

0 comments on commit 5fac1a7

Please sign in to comment.