Skip to content

Commit 4d138ec

Browse files
authored
Fix typo from previous commit (#3521)
* Fix 11493 - correctly explain code snippet behaviour Signed-off-by: Matei Hriscu <[email protected]> * Fix typo Signed-off-by: Matei Hriscu <[email protected]> --------- Signed-off-by: Matei Hriscu <[email protected]> Co-authored-by: Matei Hriscu <[email protected]>
1 parent fef6eac commit 4d138ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/type.dd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ $(SPEC_RUNNABLE_EXAMPLE_FAIL
452452
ubyte u1 = -1; // error, -1 cannot be represented in a ubyte
453453
ushort u2 = -1; // error, -1 cannot be represented in a ushort
454454
uint u3 = int(-1); // ok, -1 can be represented in an int, which can be converted to a uint
455-
ulong u4 = long(-1); // ok, -1 can be represented in a long, which can covnerted to a ulong
455+
ulong u4 = long(-1); // ok, -1 can be represented in a long, which can be converted to a ulong
456456
---
457457
)
458458

0 commit comments

Comments
 (0)