From 0ceb2af38ed827e5686430405cff8ff774ae6260 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Thu, 17 Dec 2020 02:41:25 +0200 Subject: [PATCH] Fix typo --- lib/binding_rust/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/binding_rust/README.md b/lib/binding_rust/README.md index e85f45f3..6b48630a 100644 --- a/lib/binding_rust/README.md +++ b/lib/binding_rust/README.md @@ -83,7 +83,7 @@ let new_tree = parser.parse(new_source_code, Some(&tree)); ### Text Input -The source code to parse can be provided either either as a string, a slice, a vector, or as a function that returns a slice. The text can be encoded as either UTF8 or UTF16: +The source code to parse can be provided either as a string, a slice, a vector, or as a function that returns a slice. The text can be encoded as either UTF8 or UTF16: ```rust // Store some source code in an array of lines.