File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -941,7 +941,8 @@ interface foo {
941941 @unstable(feature = fancier-foo)
942942 d: func();
943943
944- @deprecated(version = 0.2.1)
944+ @since(version = 0.2.0)
945+ @deprecated(version = 0.2.2)
945946 e: func();
946947}
947948```
@@ -958,7 +959,7 @@ change type or be removed at any time. An important expectation set by the
958959default unless explicitly opted-into by the developer.
959960
960961Finally, the ` @deprecated ` gate on ` e ` indicates that ` e ` should no longer be
961- used starting version ` 0.2.1 ` . Both toolchains and host runtimes may warn users
962+ used starting version ` 0.2.2 ` . Both toolchains and host runtimes may warn users
962963if they detect an ` @deprecated ` API is being used. An ` @deprecated ` gate is
963964required to always be paired up with either a ` @since ` or ` @deprecated ` gate.
964965
You can’t perform that action at this time.
0 commit comments