From a068143953d9f5feb7a79b5318898ccbced30080 Mon Sep 17 00:00:00 2001 From: Nimrod Gileadi <7824441+nimrod-gileadi@users.noreply.github.com> Date: Wed, 27 Mar 2024 17:24:10 +0000 Subject: [PATCH] Add semicolons to code snippet in AssetLoader.h (#7717) --- libs/gltfio/include/gltfio/AssetLoader.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/gltfio/include/gltfio/AssetLoader.h b/libs/gltfio/include/gltfio/AssetLoader.h index 080538aa336..f516166a800 100644 --- a/libs/gltfio/include/gltfio/AssetLoader.h +++ b/libs/gltfio/include/gltfio/AssetLoader.h @@ -97,8 +97,8 @@ struct AssetConfiguration { * * // Load buffers and textures from disk. * ResourceLoader resourceLoader({engine, ".", true}); - * resourceLoader.addTextureProvider("image/png", decoder) - * resourceLoader.addTextureProvider("image/jpeg", decoder) + * resourceLoader.addTextureProvider("image/png", decoder); + * resourceLoader.addTextureProvider("image/jpeg", decoder); * resourceLoader.loadResources(asset); * * // Free the glTF hierarchy as it is no longer needed.