Skip to content

Commit 310daea

Browse files
Fix broken link
Change link in Compiled Bindings doc, per #883
1 parent 629502e commit 310daea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/data-concepts/data-binding/compiled-bindings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: CONCEPTS
77
Bindings defined in the XAML are using reflection in order to find and access the requested property in your `ViewModel`. In Avalonia you can also use compiled bindings, which has some benefits:
88

99
* If you use compiled bindings and the property you bind to is not found, you will get a compile-time error. Hence you get a much better debugging experience.
10-
* Reflection is known to be slow ([see this article on codeproject.com](https://www.codeproject.com/Articles/1161127/Why-is-reflection-slow)). Using compiled bindings can therefore improve the performance of your application.
10+
* Reflection is known to be slow ([see this article on codeproject.com](https://www.codeproject.com/articles/Why-is-Reflection-Slow)). Using compiled bindings can therefore improve the performance of your application.
1111

1212
## Enable and disable compiled bindings
1313

0 commit comments

Comments
 (0)