File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -163,11 +163,11 @@ let message =
163
163
)
164
164
| UselessRecordSpread => "this record spread is useless as all of the record's fields are overridden."
165
165
| PrintUnsafe (typ ) =>
166
- "it looks like you are using print on an unsafe Wasm value here.\n This is generally unsafe and will cause errors. Use DebugPrint.print"
166
+ "it looks like you are using ` print` on an unsafe Wasm value here.\n This is generally unsafe and will cause errors. Use ` DebugPrint.print` "
167
167
++ typ
168
168
++ " from the `runtime/debugPrint` module instead."
169
169
| ToStringUnsafe (typ ) =>
170
- "it looks like you are using toString on an unsafe Wasm value here.\n This is generally unsafe and will cause errors. Use DebugPrint.toString"
170
+ "it looks like you are using ` toString` on an unsafe Wasm value here.\n This is generally unsafe and will cause errors. Use ` DebugPrint.toString` "
171
171
++ typ
172
172
++ " from the `runtime/debugPrint` module instead." ;
173
173
You can’t perform that action at this time.
0 commit comments