Skip to content

Commit

Permalink
updated runtime capabilities list in hover
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottCarda-MS committed Dec 5, 2024
1 parent fcf5423 commit 394f52b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion language_service/src/hover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl<'a> Handler<'a> for HoverGenerator<'a> {
let description = match name.name.as_ref() {
"Config" => "Provides pre-processing information about when an item should be included in compilation.
Valid arguments are `Adaptive`, `IntegerComputations`, `FloatingPointComputations`, `BackwardsBranching`, `HigherLevelConstructs`, and `QubitReset`.
Valid arguments are `Base`, `Adaptive`, `IntegerComputations`, `FloatingPointComputations`, `BackwardsBranching`, `HigherLevelConstructs`, `QubitReset`, and `Unrestricted`.
The `not` operator is also supported to negate the attribute, e.g. `not Adaptive`.",
"EntryPoint" => "Indicates that a callable is an entry point to a program.",
Expand Down
2 changes: 1 addition & 1 deletion language_service/src/hover/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ fn attr_with_arg() {
Provides pre-processing information about when an item should be included in compilation.
Valid arguments are `Adaptive`, `IntegerComputations`, `FloatingPointComputations`, `BackwardsBranching`, `HigherLevelConstructs`, and `QubitReset`.
Valid arguments are `Base`, `Adaptive`, `IntegerComputations`, `FloatingPointComputations`, `BackwardsBranching`, `HigherLevelConstructs`, `QubitReset`, and `Unrestricted`.
The `not` operator is also supported to negate the attribute, e.g. `not Adaptive`."#]],
);
Expand Down

0 comments on commit 394f52b

Please sign in to comment.