]> git.lizzy.rs Git - rust.git/commitdiff
Refactor changes
authorPankajChaudhary5 <pankajchaudhary172@gmail.com>
Fri, 27 Mar 2020 13:46:32 +0000 (19:16 +0530)
committerPankajChaudhary5 <pankajchaudhary172@gmail.com>
Fri, 27 Mar 2020 13:46:32 +0000 (19:16 +0530)
src/librustc_error_codes/error_codes/E0703.md

index b21416b3644471155d59b07553b75e9b1db8e5cd..a7e4d4b7e2f926f34f7acf1f94e5498a5c0473a5 100644 (file)
@@ -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!