mirror of
https://github.com/astral-sh/ruff
synced 2026-01-09 07:34:06 -05:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user