Skip to content

Commit b5625a3

Browse files
authored
Update Inspector.md
Firstly, the `containsOnlyNumbers` was used and declared, but at three next places `containsOnlyIntegers` appeared. This is strangely. It should be fixed.
1 parent 4e75b2b commit b5625a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Chapters/Inspector/Inspector.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ OrderedCollection << inspectionMaxValue
117117
```
118118
OrderedCollection << inspectionMaxValueContext: aContext
119119
120-
^ aContext active: self containsOnlyIntegers
120+
^ aContext active: self containsOnlyNumbers
121121
```
122122

123123
![Inspect max value tab. %width=60&anchor=InspectorMaxValueTab](figures/InspectorExpansionMax.png)
@@ -131,7 +131,7 @@ As we can see in Figure *@InspectorMaxValueTab@*, the `self` in the evaluator do
131131
OrderedCollection << inspectionMaxValueContext: aContext
132132
133133
aContext withoutEvaluator.
134-
^ aContext active: self containsOnlyIntegers
134+
^ aContext active: self containsOnlyNumbers
135135
```
136136

137137
By reinspecting the same collection we see the inspector in Figure *@InspectorWithoutEvaluator@*.
@@ -158,7 +158,7 @@ OrderedCollection << inspectionIntegerHistogram
158158
```
159159
OrderedCollection << inspectionIntegerHistogramContext: aContext
160160
161-
aContext active: self containsOnlyIntegers.
161+
aContext active: self containsOnlyNumbers.
162162
aContext withoutEvaluator.
163163
```
164164

0 commit comments

Comments
 (0)