diff --git a/Tests/local-settings-tests.ts b/Tests/local-settings-tests.ts
index 0caaa49c0..5185c87ac 100644
--- a/Tests/local-settings-tests.ts
+++ b/Tests/local-settings-tests.ts
@@ -15,7 +15,7 @@ var noNumberKey: string = "noNumberKey";
//
// ## Working with string, number and boolean values
-//
export var testBoolean = function () {
LocalSettings.setBoolean(boolKey, false);
@@ -23,7 +23,7 @@ export var testBoolean = function () {
TKUnit.assert(false == boolValue, "Cannot set boolean to false, currently it is: " + LocalSettings.getBoolean(boolKey));
//
- // ### set and get boolean value and provide default value in case it is not set
+ // ### Set and get boolean value and provide default value in case it is not set
// ``` JavaScript
LocalSettings.setBoolean("boolKey", true);
var boolValue = LocalSettings.getBoolean("boolKey", false);
@@ -36,7 +36,7 @@ export var testBoolean = function () {
export var testString = function () {
//
- // ### set and get string value
+ // ### Set and get string value
// ``` JavaScript
LocalSettings.setString("stringKey", "String value");
var stringValue = LocalSettings.getString("stringKey");
@@ -82,7 +82,7 @@ export var testDefaults = function () {
//
// ## Other functions
-//
export var testHasKey = function () {
//