Skip to content

Commit ca1deef

Browse files
committed
Fix typo in QME post
1 parent 61c045a commit ca1deef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2024-09-05-qualified-methods-for-ClojureCLR.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ You can access the first overload with either of these:
127127
The second overload is accessed with:
128128

129129
```clojure
130-
(dm.interop.C6/sm1 12 #^"System.String[]" (into-array String ["abc" "de" "f"]))
131-
(dm.interop.C6/sm1 12 #^"System.String[]" (into-array ["abc" "de" "f"]))
130+
(ParamsTest/StaticParams 12 #^"System.String[]" (into-array String ["abc" "de" "f"]))
131+
(ParamsTest/StaticParams 12 #^"System.String[]" (into-array ["abc" "de" "f"]))
132132
```
133133
## Generic methods
134134

0 commit comments

Comments
 (0)