@@ -20,7 +20,7 @@ abstract class HtmlSafeCall extends MethodCall {
20
20
HtmlSafeCall ( ) { this .getMethodName ( ) = "html_safe" }
21
21
}
22
22
23
- // A call to `html_safe` from within a template or view component .
23
+ // A call to `html_safe` from within a template.
24
24
private class ActionViewHtmlSafeCall extends HtmlSafeCall {
25
25
ActionViewHtmlSafeCall ( ) { inActionViewContext ( this ) }
26
26
}
@@ -40,7 +40,7 @@ class RawCall extends ActionViewContextCall {
40
40
RawCall ( ) { this .getMethodName ( ) = "raw" }
41
41
}
42
42
43
- // A call to the `params` method within the context of a template or view component .
43
+ // A call to the `params` method within the context of a template.
44
44
private class ActionViewParamsCall extends ActionViewContextCall , ParamsCall { }
45
45
46
46
/**
@@ -100,7 +100,7 @@ abstract class RenderCall extends MethodCall {
100
100
// TODO: implicit renders in controller actions
101
101
}
102
102
103
- // A call to the `render` method within the context of a template or view component .
103
+ // A call to the `render` method within the context of a template.
104
104
private class ActionViewRenderCall extends RenderCall , ActionViewContextCall { }
105
105
106
106
/**
@@ -110,7 +110,7 @@ abstract class RenderToCall extends MethodCall {
110
110
RenderToCall ( ) { this .getMethodName ( ) = [ "render_to_body" , "render_to_string" ] }
111
111
}
112
112
113
- // A call to `render_to` from within a template or view component .
113
+ // A call to `render_to` from within a template.
114
114
private class ActionViewRenderToCall extends ActionViewContextCall , RenderToCall { }
115
115
116
116
/**
0 commit comments