From 597bb5f5488ff70b7c6768b3c2f783b8863f2f8c Mon Sep 17 00:00:00 2001 From: ahbejarano Date: Sun, 6 Oct 2024 08:53:42 +0200 Subject: [PATCH] Fix link --- LICENSE | 2 +- bookcontents/chapter-02/chapter-02.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 6e3bc3d2..8e7e41f3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Antonio Hernández Bejarano +Copyright (c) 2024 Antonio Hernández Bejarano Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/bookcontents/chapter-02/chapter-02.md b/bookcontents/chapter-02/chapter-02.md index ade4c73a..2f64c5a4 100644 --- a/bookcontents/chapter-02/chapter-02.md +++ b/bookcontents/chapter-02/chapter-02.md @@ -185,7 +185,7 @@ public class Instance { We will get the supported validation layers by invoking the `getSupportedValidationLayers`. If we have requested validation, but we have not found any layer that can help on this, we log a warning but continue the execution. To use validation layers, you need to install the -[Vulkan SDK]([Vulkan® SDK - What's in the SDK - Where to Download](https://www.lunarg.com/vulkan-sdk/)). +[Vulkan SDK]([Vulkan® SDK - What's in the SDK - Where to Download](https://www.lunarg.com/vulkan-sdk/). Let's move out of the constructor code and check the contents of the `getSupportedValidationLayers`: ```java