summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJake Zamora <zamora18@gmail.com>2022-04-03 16:53:42 -0600
committerGitHub <noreply@github.com>2022-04-04 00:53:42 +0200
commit5e4d37cbbfa8ed5242cc3892b26e5afd8f4f31ee (patch)
treec406bb8343dfaa3e05af9f48dfa80a55580b906a /README.md
parent1ca2f32af15d3ee013baf0375b05bc095c5ae6f6 (diff)
downloaddoxdocgen-5e4d37cbbfa8ed5242cc3892b26e5afd8f4f31ee.tar.gz
Added missing commas for config json for easy copy/pasting (#282)
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 7fc0664..bdfc729 100644
--- a/README.md
+++ b/README.md
@@ -234,13 +234,13 @@ Each of them can be configured with its own custom text and you can decide if th
"doxdocgen.generic.useGitUserName": false,
// Substitute {email} with git config --get user.email.
- "doxdocgen.generic.useGitUserEmail": false
+ "doxdocgen.generic.useGitUserEmail": false,
// Provide intellisense and snippet for doxygen commands
- "doxdocgen.generic.commandSuggestion": true
+ "doxdocgen.generic.commandSuggestion": true,
// Add `\\` in doxygen command suggestion for better readbility (need to enable commandSuggestion)
- "doxdocgen.generic.commandSuggestionAddPrefix": false
+ "doxdocgen.generic.commandSuggestionAddPrefix": false,
}
```