File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -941,7 +941,8 @@ interface foo {
941
941
@unstable(feature = fancier-foo)
942
942
d: func();
943
943
944
- @deprecated(version = 0.2.1)
944
+ @since(version = 0.2.0)
945
+ @deprecated(version = 0.2.2)
945
946
e: func();
946
947
}
947
948
```
@@ -958,7 +959,7 @@ change type or be removed at any time. An important expectation set by the
958
959
default unless explicitly opted-into by the developer.
959
960
960
961
Finally, 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
962
963
if they detect an ` @deprecated ` API is being used. An ` @deprecated ` gate is
963
964
required to always be paired up with either a ` @since ` or ` @deprecated ` gate.
964
965
You can’t perform that action at this time.
0 commit comments