File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ variant:
246
246
私たちが定義し、使用したのと全く同じenumと列挙子がありますが、アドレスデータを二種の異なる構造体の形で列挙子に埋め込み、
247
247
この構造体は各列挙子用に異なる形で定義されています。
248
248
249
- [ IpAddr ] : ../.. /std/net/enum.IpAddr.html
249
+ [ IpAddr ] : https://doc.rust-lang.org /std/net/enum.IpAddr.html
250
250
251
251
<!--
252
252
```rust
@@ -531,7 +531,7 @@ as follows:
531
531
値が存在するか不在かという概念をコード化するenumならあります。このenumが` Option<T> ` で、
532
532
以下のように[ 標準ライブラリに定義] [ option ] されています。
533
533
534
- [ option ] : ../.. /std/option/enum.Option.html
534
+ [ option ] : https://doc.rust-lang.org /std/option/enum.Option.html
535
535
536
536
``` rust
537
537
enum Option <T > {
@@ -686,7 +686,7 @@ the methods on `Option<T>` will be extremely useful in your journey with Rust.
686
686
[ ドキュメント] [ docs ] でそれらを確認できます。` Option<T> ` のメソッドに馴染むと、
687
687
Rustの旅が極めて有益になるでしょう。
688
688
689
- [ docs ] : ../.. /std/option/enum.Option.html
689
+ [ docs ] : https://doc.rust-lang.org /std/option/enum.Option.html
690
690
691
691
<!--
692
692
In general, in order to use an `Option<T>` value, you want to have code that
You can’t perform that action at this time.
0 commit comments