From fbcc81b53add43c699a4a1b59219301aedc5fdae Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Sun, 17 Jul 2022 23:05:26 +0200 Subject: [PATCH] obey line length limit --- src/opaque-types-type-alias-impl-trait-inference.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/opaque-types-type-alias-impl-trait-inference.md b/src/opaque-types-type-alias-impl-trait-inference.md index 0d738c88..4e86d8c9 100644 --- a/src/opaque-types-type-alias-impl-trait-inference.md +++ b/src/opaque-types-type-alias-impl-trait-inference.md @@ -1,6 +1,9 @@ # Inference of opaque types (type alias `impl Trait`) -This page describes how the compiler infers the hidden type for an opaque type. This kind of type inference is particularly complex because, unlike other kinds of type inference, it works across functions and function bodies. +This page describes how the compiler infers the hidden type for an opaque type. +This kind of type inference is particularly complex because, +unlike other kinds of type inference, +it works across functions and function bodies. ## Running example