Skip to content

Commit 3fa0048

Browse files
committed
All spaces at head of line are removed.
1 parent 2666b50 commit 3fa0048

File tree

10 files changed

+32
-32
lines changed

10 files changed

+32
-32
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
always @({{ sens_list }})
2-
{{ statement }}
2+
{{ statement }}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
begin{% if scope != '' %} : {{ scope }}{% endif %}
2-
{%- for statement in statements %}
3-
{{ statement }}
4-
{%- endfor %}
2+
{%- for statement in statements %}
3+
{{ statement }}
4+
{%- endfor %}
55
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function {{ retwidth }} {{ name }};
22
{%- for s in statement %}
3-
{{ s }}
3+
{{ s }}
44
{%- endfor %}
55
endfunction
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ name }}{{ array }}
2-
({% for port in portlist %}
3-
{{ port }}{%- if loop.index < len_portlist -%}, {%- endif -%}
4-
{% endfor %}
5-
)
2+
({% for port in portlist %}
3+
{{ port }}{%- if loop.index < len_portlist -%}, {%- endif -%}
4+
{% endfor %}
5+
)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{{ module }}
22
{%- if len_parameterlist > 0 %}
3-
#({% for param in parameterlist %}
4-
{{ param }}{%- if loop.index < len_parameterlist -%}, {%- endif -%}
5-
{% endfor %}
6-
)
3+
#({% for param in parameterlist %}
4+
{{ param }}{%- if loop.index < len_parameterlist -%},
5+
{%- endif -%}{% endfor %}
6+
)
77
{%- endif %}
88
{%- for instance in instances %}
9-
{{ instance }}{%- if loop.index < len_instances -%}, {%- endif -%}
10-
{%- endfor -%};
9+
{{ instance }}{%- if loop.index < len_instances -%},
10+
{%- endif -%}{%- endfor -%};
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11

22
module {{ modulename }}{% if paramlist != '' %} #
3-
(
4-
{{ paramlist }}
5-
)
3+
(
4+
{{ paramlist }}
5+
)
66
{%- endif %}
7-
(
8-
{{ portlist }}
9-
);
10-
{%- for item in items %}
11-
{{ item }}
12-
{%- endfor %}
7+
(
8+
{{ portlist }}
9+
);
10+
{%- for item in items %}
11+
{{ item }}
12+
{%- endfor %}
1313
endmodule
1414

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
fork{% if scope != '' %} : {{ scope }}{% endif %}
2-
{%- for statement in statements %}
3-
{{ statement }}
4-
{%- endfor %}
2+
{%- for statement in statements %}
3+
{{ statement }}
4+
{%- endfor %}
55
join
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
{% for param in params %}{{ param }}{% if loop.index < len_params %}, {% endif %}
2-
{% endfor %}
1+
{% for param in params %}{{ param }}{% if loop.index < len_params %},
2+
{% endif %}{% endfor %}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
{% for port in ports %}{{ port }}{% if loop.index < len_ports %}, {% endif %}
2-
{% endfor %}
1+
{% for port in ports %}{{ port }}{% if loop.index < len_ports %},
2+
{% endif %}{% endfor %}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
task {{ name }};
22
{%- for s in statement %}
3-
{{ s }}
3+
{{ s }}
44
{%- endfor %}
55
endtask

0 commit comments

Comments
 (0)