Skip to content

Commit a3e42aa

Browse files
authored
Missing cast in 1.md
Missing cast in 1.md
1 parent c08118f commit a3e42aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public class MyDependencyFactory
177177
}
178178
public MyDependency GetInstance()
179179
{
180-
return _factory(_serviceProvider, null);
180+
return (MyDependency) _factory(_serviceProvider, null);
181181
}
182182
}
183183
```

0 commit comments

Comments
 (0)