We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 84214d1 + b42c559 commit f0348fcCopy full SHA for f0348fc
src/doc/reference.md
@@ -1255,9 +1255,7 @@ fn my_err(s: &str) -> ! {
1255
We call such functions "diverging" because they never return a value to the
1256
caller. Every control path in a diverging function must end with a `panic!()` or
1257
a call to another diverging function on every control path. The `!` annotation
1258
-does *not* denote a type. Rather, the result type of a diverging function is a
1259
-special type called ⊥ ("bottom") that unifies with any type. Rust has no
1260
-syntax for ⊥.
+does *not* denote a type.
1261
1262
It might be necessary to declare a diverging function because as mentioned
1263
previously, the typechecker checks that every control path in a function ends
0 commit comments