Skip to content

Commit

Permalink
Merge pull request #95 from Earthcomputer/master
Browse files Browse the repository at this point in the history
Replace Fandom references with new wiki
  • Loading branch information
owengage committed Sep 26, 2023
2 parents f150fb2 + e4bcb78 commit a212a7c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fastanvil/examples/dump-mca.rs
Expand Up @@ -6,7 +6,7 @@ use fastnbt::Value;

//
// This loads an MCA file:
// https://minecraft.fandom.com/wiki/Anvil_file_format#Further_information
// https://minecraft.wiki/w/Anvil_file_format#Further_information
//
// This can be a region, a POI, or an entities MCA file, and dumps the value of it.
//
Expand Down
4 changes: 2 additions & 2 deletions fastnbt/src/macros.rs
Expand Up @@ -28,7 +28,7 @@
// DEALINGS IN THE SOFTWARE.

/// Produce a [`Value`][`crate::Value`] using
/// JSON/[SNBT](https://minecraft.fandom.com/wiki/NBT_format#SNBT_format)-like
/// JSON/[SNBT](https://minecraft.wiki/w/NBT_format#SNBT_format)-like
/// syntax.
///
/// Example:
Expand All @@ -45,7 +45,7 @@
/// above could not be simplified to just `key1`.
///
/// NBT Arrays are supported with
/// [SNBT](https://minecraft.fandom.com/wiki/NBT_format#SNBT_format) syntax:
/// [SNBT](https://minecraft.wiki/w/NBT_format#SNBT_format) syntax:
///
/// ```rust
/// # use fastnbt::nbt;
Expand Down
2 changes: 1 addition & 1 deletion fastnbt/src/ser/serializer.rs
Expand Up @@ -563,7 +563,7 @@ impl<'a, W: 'a + Write> serde::ser::Serializer for &'a mut Delayed<'a, W> {
// relevant serialize call never happens.

// This is talked about a bit here:
// https://minecraft.fandom.com/wiki/NBT_format
// https://minecraft.wiki/w/NBT_format
// A list of end tags seems to be the way to go.

self.ser.writer.write_tag(Tag::End)?;
Expand Down

0 comments on commit a212a7c

Please sign in to comment.