We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d4b213 commit 2c03f81Copy full SHA for 2c03f81
doc/src/manual/types.md
@@ -171,11 +171,11 @@ Let's consider some of the abstract types that make up Julia's numerical hierarc
171
172
```julia
173
abstract type Number end
174
-abstract type Real <: Number end
+abstract type Real <: Number end
175
abstract type AbstractFloat <: Real end
176
-abstract type Integer <: Real end
177
-abstract type Signed <: Integer end
178
-abstract type Unsigned <: Integer end
+abstract type Integer <: Real end
+abstract type Signed <: Integer end
+abstract type Unsigned <: Integer end
179
```
180
181
The [`Number`](@ref) type is a direct child type of `Any`, and [`Real`](@ref) is its child.
0 commit comments