From 3dccd3438cb70fcbc798bdfb621705fa09824d1d Mon Sep 17 00:00:00 2001 From: Kevin Z Date: Tue, 25 Jun 2024 11:15:05 -0600 Subject: [PATCH] doc: typo: Storage -> Storage (#3880) --- .../api/transfer/v1/storage/base/SidedStorageBlockEntity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/api/transfer/v1/storage/base/SidedStorageBlockEntity.java b/fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/api/transfer/v1/storage/base/SidedStorageBlockEntity.java index b7f466271..cc9d71065 100644 --- a/fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/api/transfer/v1/storage/base/SidedStorageBlockEntity.java +++ b/fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/api/transfer/v1/storage/base/SidedStorageBlockEntity.java @@ -34,11 +34,11 @@ import net.fabricmc.fabric.api.transfer.v1.storage.Storage; *

How it works is that fabric registers fallback providers for instances of this interface. * This can be used for convenient Storage registration, but please always use the SIDED lookups for queries: *

{@code
- * Storage maybeFluidStorage = FluidStorage.SIDED.find(world, pos, direction);
+ * Storage maybeFluidStorage = FluidStorage.SIDED.find(world, pos, direction);
  * if (maybeFluidStorage != null) {
  *     // use it
  * }
- * Storage maybeItemStorage = ItemStorage.SIDED.find(world, pos, direction);
+ * Storage maybeItemStorage = ItemStorage.SIDED.find(world, pos, direction);
  * if (maybeItemStorage != null) {
  *     // use it
  * }