mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-17 00:50:16 +00: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:
parent
257964a8bc
commit
e0a8fb607a
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue