From 18e58d63c8c70dec204aa52e5a526258aec36bb0 Mon Sep 17 00:00:00 2001 From: ChampionAsh5357 Date: Tue, 12 Nov 2024 23:16:16 -0500 Subject: [PATCH] fix(docs): Remove extra spacing --- docs/concepts/registries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/registries.md b/docs/concepts/registries.md index b25feab5..34d0e82d 100644 --- a/docs/concepts/registries.md +++ b/docs/concepts/registries.md @@ -52,7 +52,7 @@ public static final DeferredHolder EXAMPLE_BLOCK_2 = BLOCKS.re // Our registry name. "example_block" // A function creating the object we want to register - // given its registry name as a ResourceLocation. + // given its registry name as a ResourceLocation. registryName -> new SlabBlock(...) ); ``` @@ -73,7 +73,7 @@ public static final Supplier EXAMPLE_BLOCK_2 = BLOCKS.register( // Our registry name. "example_block" // A function creating the object we want to register - // given its registry name as a ResourceLocation. + // given its registry name as a ResourceLocation. registryName -> new SlabBlock(...) ); ```