From ea7b569e1b133b6c19ef60c9cb2b2fd6b79847da Mon Sep 17 00:00:00 2001 From: csmoe Date: Mon, 31 Dec 2018 20:53:43 +0800 Subject: docing parser methods --- crates/ra_syntax/src/yellow/builder.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/ra_syntax/src/yellow/builder.rs') diff --git a/crates/ra_syntax/src/yellow/builder.rs b/crates/ra_syntax/src/yellow/builder.rs index 9fcebfb93..37ae6329b 100644 --- a/crates/ra_syntax/src/yellow/builder.rs +++ b/crates/ra_syntax/src/yellow/builder.rs @@ -26,11 +26,11 @@ impl Sink for GreenBuilder { self.inner.leaf(kind, text); } - fn start_internal(&mut self, kind: SyntaxKind) { + fn start_branch(&mut self, kind: SyntaxKind) { self.inner.start_internal(kind) } - fn finish_internal(&mut self) { + fn finish_branch(&mut self) { self.inner.finish_internal(); } -- cgit v1.2.3