Quellcode durchsuchen

AxonOff: typo in class doc

Herbert Vojčík vor 8 Jahren
Ursprung
Commit
4b0b63b787
2 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 2 2
      src/Axon.js
  2. 1 1
      src/Axon.st

+ 2 - 2
src/Axon.js

@@ -1,4 +1,4 @@
-define("axon/Axon", ["amber/boot", "amber_core/Kernel-Objects", "amber_core/Kernel-Exceptions"], function($boot){
+define("axon/Axon", ["amber/boot", "amber_core/Kernel-Objects", "amber_core/Kernel-Exceptions"], function($boot){"use strict";
 var $core=$boot.api,nil=$boot.nil,$recv=$boot.asReceiver,$globals=$boot.globals;
 $core.addPackage('Axon');
 $core.packages["Axon"].innerEval = function (expr) { return eval(expr); };
@@ -545,7 +545,7 @@ $globals.InterestedInEqual);
 
 $core.addClass('AxonOff', $globals.Error, [], 'Axon');
 //>>excludeStart("ide", pragmas.excludeIdeData);
-$globals.AxonOff.comment="SIgnal me from the subscription block to unsubscribe it.";
+$globals.AxonOff.comment="Signal me from the subscription block to unsubscribe it.";
 //>>excludeEnd("ide");
 
 

+ 1 - 1
src/Axon.st

@@ -146,7 +146,7 @@ Error subclass: #AxonOff
 	instanceVariableNames: ''
 	package: 'Axon'!
 !AxonOff commentStamp!
-SIgnal me from the subscription block to unsubscribe it.!
+Signal me from the subscription block to unsubscribe it.!
 
 Object subclass: #AxonizedObject
 	instanceVariableNames: 'axon'