From 816a33338d0ed67a250aacad3e1275fbf8556a14 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 15 May 2024 08:46:11 -0700 Subject: [PATCH] Remove 7 year old FIXME on parse_file --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index daec113064..4d520bd10b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -952,8 +952,6 @@ pub fn parse_str(s: &str) -> Result { parse::Parser::parse_str(T::parse, s) } -// FIXME the name parse_file makes it sound like you might pass in a path to a -// file, rather than the content. /// Parse the content of a file of Rust code. /// /// This is different from `syn::parse_str::(content)` in two ways: