aboutsummaryrefslogtreecommitdiff
path: root/src/parser/grammar/type_params.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-07-31 21:16:07 +0100
committerAleksey Kladov <[email protected]>2018-07-31 21:16:07 +0100
commitd1400e95d7ad701fcba1191cb00968c2eae8b394 (patch)
tree8085d65e9b226592d334b117036cb7725a5d710f /src/parser/grammar/type_params.rs
parent6953049e5f67dcc940cc4edc228c1be13a4624d1 (diff)
renames
Diffstat (limited to 'src/parser/grammar/type_params.rs')
-rw-r--r--src/parser/grammar/type_params.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/grammar/type_params.rs b/src/parser/grammar/type_params.rs
index 2affd47cc..b31bf52b6 100644
--- a/src/parser/grammar/type_params.rs
+++ b/src/parser/grammar/type_params.rs
@@ -1,6 +1,6 @@
1use super::*; 1use super::*;
2 2
3pub(super) fn list(p: &mut Parser) { 3pub(super) fn type_param_list(p: &mut Parser) {
4 if !p.at(L_ANGLE) { 4 if !p.at(L_ANGLE) {
5 return; 5 return;
6 } 6 }