Remove a low-value comment.

We rarely use parameter comments, and these ones don't tell us anything
interesting.
This commit is contained in:
Nicholas Nethercote 2024-09-18 06:57:19 +10:00
parent 4ce010efcf
commit eb575506f2

View File

@ -15,11 +15,6 @@ use crate::value::Value;
/// Codegens a reference to a fn/method item, monomorphizing and
/// inlining as it goes.
///
/// # Parameters
///
/// - `cx`: the crate context
/// - `instance`: the instance to be instantiated
pub(crate) fn get_fn<'ll, 'tcx>(cx: &CodegenCx<'ll, 'tcx>, instance: Instance<'tcx>) -> &'ll Value {
let tcx = cx.tcx();