Nicolas Petton 10 years ago
parent
commit
ff1dcca1e9
2 changed files with 2 additions and 2 deletions
  1. 1 1
      js/Kernel-Infrastructure.js
  2. 1 1
      st/Kernel-Infrastructure.st

+ 1 - 1
js/Kernel-Infrastructure.js

@@ -2341,7 +2341,7 @@ globals.Transcript.klass);
 
 
 smalltalk.addClass('Setting', globals.Object, ['key', 'value', 'defaultValue'], 'Kernel-Infrastructure');
-globals.Setting.comment="I represent a setting accessible via `Smalltalk settings`.\x0a\x0a## API\x0a\x0aa `Setting` value can be read using `value` and set using `value:`.\x0a\x0aSettings are accessed with `'key' asSetting` or `'key' asSettingIfAbsent: 'defaultValue'`.";
+globals.Setting.comment="I represent a setting accessible via `Smalltalk settings`.\x0a\x0a## API\x0a\x0aA `Setting` value can be read using `value` and set using `value:`.\x0a\x0aSettings are accessed with `'key' asSetting` or `'key' asSettingIfAbsent: 'defaultValue'`.";
 smalltalk.addMethod(
 smalltalk.method({
 selector: "defaultValue",

+ 1 - 1
st/Kernel-Infrastructure.st

@@ -917,7 +917,7 @@ I represent a setting accessible via `Smalltalk settings`.
 
 ## API
 
-a `Setting` value can be read using `value` and set using `value:`.
+A `Setting` value can be read using `value` and set using `value:`.
 
 Settings are accessed with `'key' asSetting` or `'key' asSettingIfAbsent: 'defaultValue'`.!