minor fix: Use lowercase key for features

This commit is contained in:
Marius Kintel 2016-09-28 22:49:49 +02:00
parent 498a5c3186
commit 2bf66c555f

View file

@ -23,7 +23,7 @@ const Feature Feature::ExperimentalEachExpression("lc-each", "Enable <code>each<
const Feature Feature::ExperimentalElseExpression("lc-else", "Enable <code>else</code> expression in list comprehensions.");
const Feature Feature::ExperimentalForCExpression("lc-for-c", "Enable C-style <code>for</code> expression in list comprehensions.");
const Feature Feature::ExperimentalSvgImport("svg-import", "Enable SVG import.");
const Feature Feature::ExperimentalCustomizer("Customizer", "Enable Customizer");
const Feature Feature::ExperimentalCustomizer("customizer", "Enable Customizer");
Feature::Feature(const std::string &name, const std::string &description)