fix obsolete name in resolve_qualified_name docs (#10762)

`resolve_call_path` was renamed to `resolve_qualified_name` in
a6d892b1f4, but the doc block for the
function wasn't updated to match.
This commit is contained in:
Carl Meyer 2024-04-03 14:13:10 -06:00 committed by GitHub
parent 257964a8bc
commit e0a8fb607a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -680,7 +680,7 @@ impl<'a> SemanticModel<'a> {
/// print(python_version)
/// ```
///
/// ...then `resolve_call_path(${python_version})` will resolve to `sys.version_info`.
/// ...then `resolve_qualified_name(${python_version})` will resolve to `sys.version_info`.
pub fn resolve_qualified_name<'name, 'expr: 'name>(
&self,
value: &'expr Expr,