From 0d90612952de6e5b81417ec75d52277d31d7b737 Mon Sep 17 00:00:00 2001 From: PankajChaudhary5 Date: Fri, 27 Mar 2020 19:16:32 +0530 Subject: [PATCH] Refactor changes --- src/librustc_error_codes/error_codes/E0703.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librustc_error_codes/error_codes/E0703.md b/src/librustc_error_codes/error_codes/E0703.md index b21416b3644..a7e4d4b7e2f 100644 --- a/src/librustc_error_codes/error_codes/E0703.md +++ b/src/librustc_error_codes/error_codes/E0703.md @@ -8,9 +8,9 @@ extern "invalid" fn foo() {} // error! # fn main() {} ``` -At present there the few predefined ABI's (like Rust, C, system, etc.) -which we can use in our Rust code. Please verify the ABI from the -given ABI. For example you can replace the given ABI from 'Rust'. +At present few predefined ABI's (like Rust, C, system, etc.) can be +used in Rust. Verify that the ABI is predefined. For example you can +replace the given ABI from 'Rust'. ``` extern "Rust" fn foo() {} // ok!