diff --git a/doc/langref.html.in b/doc/langref.html.in index ba817f0a4d..9247d3bc43 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -6622,7 +6622,7 @@ fn gimmeTheBiggerInteger(a: u64, b: u64) u64 {

For example, if we were to introduce another function to the above snippet:

- {#code_begin|test_err|value with comptime only type 'type' depends on runtime control flow#} + {#code_begin|test_err|unable to resolve comptime value#} fn max(comptime T: type, a: T, b: T) T { return if (a > b) a else b; }