Skip to content

Commit 688a244

Browse files
authored
FIx typo
1 parent b5a6963 commit 688a244

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/reference/metaprogramming/inline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ method will always be inlined at the point of call.
4242

4343
In the inlined code, an `if-then-else` with a constant condition will be rewritten
4444
to its `then`- or `else`-part. Consequently, in the `log` method above the
45-
`if (Config.loggi0ng)` with `Config.logging == true` will get rewritten into its
45+
`if (Config.logging)` with `Config.logging == true` will get rewritten into its
4646
`then`-part.
4747

4848
Here's an example:

0 commit comments

Comments
 (0)