Rollup merge of #71755 - tshepang:fix-comment, r=jonas-schievink

fix doc reference

Should of been in e0ce9f8c0a,
but that had a typo.
This commit is contained in:
Dylan DPC 2020-05-01 19:49:18 +02:00 committed by GitHub
commit da42f6897e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2050,7 +2050,7 @@ pub struct Param<'hir> {
pub struct FnDecl<'hir> {
/// The types of the function's parameters.
///
/// Additional argument data is stored in the function's [body](Body::parameters).
/// Additional argument data is stored in the function's [body](Body::params).
pub inputs: &'hir [Ty<'hir>],
pub output: FnRetTy<'hir>,
pub c_variadic: bool,