You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/blazor/advanced-scenarios.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ In the following example, the loop in the `CreateComponent` method generates thr
74
74
75
75
### Sequence numbers relate to code line numbers and not execution order
76
76
77
-
Razor component files (*.razor*) are always compiled. Compilation is potentially a great advantage over interpreting code because the compile step can be used to inject information that improves app performance at runtime.
77
+
Razor component files (*.razor*) are always compiled. Compilation is a potential advantage over interpreting code because the compile step can be used to inject information that improves app performance at runtime.
78
78
79
79
A key example of these improvements involves *sequence numbers*. Sequence numbers indicate to the runtime which outputs came from which distinct and ordered lines of code. The runtime uses this information to generate efficient tree diffs in linear time, which is far faster than is normally possible for a general tree diff algorithm.
Copy file name to clipboardExpand all lines: aspnetcore/blazor/event-handling.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ In the following example, `UpdateHeading` is called asynchronously when the butt
62
62
63
63
## Event argument types
64
64
65
-
For some events, event argument types are permitted. If access to one of these event types isn't necessary, it isn't required in the method call.
65
+
For some events, event argument types are permitted. Specifying an event type in the method call is only necessary if the event type is used in the method.
66
66
67
67
Supported `EventArgs` are shown in the following table.
@@ -41,7 +41,7 @@ An existing Razor Pages or MVC app can integrate Razor components into pages and
41
41
42
42
1. Add an *_Imports.razor* file to the root folder of the project with the following content (change the last namespace, `MyAppNamespace`, to the namespace of the app):
0 commit comments