Skip to content

Commit

Permalink
Remove bullet list from doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bterlson committed Dec 25, 2024
1 parent d8ee0c9 commit c2c4142
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions packages/core/src/binder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,15 +322,12 @@ export interface Binder {
): Ref<TScope | undefined>;

/**
* Resolve a fully qualified name to a symbol. The syntax for a fully
* qualified name is as follows:
* Resolve a fully qualified name to a symbol. Access a nested scope by name
* with `::`, a nested static member with `.` and a nested instance member
* with `#`.
*
* * `::` accesses a nested scope
* * `.` accesses a nested static member
* * `#` accesses a nested instance member
*
* Per-language packages may provide their own resolveFQN function
* that uses syntax more natural to that language.
* Per-language packages may provide their own resolveFQN function that uses
* syntax more natural to that language.
*/
resolveFQN<
TScope extends OutputScope = OutputScope,
Expand Down

0 comments on commit c2c4142

Please sign in to comment.