about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tests/ui/allow_attributes_without_reason.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/allow_attributes_without_reason.rs b/tests/ui/allow_attributes_without_reason.rs
index 2b26624b424..663c2eb2c37 100644
--- a/tests/ui/allow_attributes_without_reason.rs
+++ b/tests/ui/allow_attributes_without_reason.rs
@@ -31,7 +31,7 @@ fn main() {
 
 // Make sure this is not triggered on `?` desugaring
 
-pub fn trigger_fp_option() -> Option<()>{
+pub fn trigger_fp_option() -> Option<()> {
     Some(())?;
     None?;
     Some(())