From c6eb247b300a4ccf98ce4040fbc8e1cc754ffe09 Mon Sep 17 00:00:00 2001
From: vfdev <vfdev.5@gmail.com>
Date: Mon, 2 Dec 2024 20:17:33 +0100
Subject: [PATCH] Fixed URL typo (#113)

---
 docs/digits_diffusion_model.ipynb | 2 +-
 docs/digits_diffusion_model.md    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/digits_diffusion_model.ipynb b/docs/digits_diffusion_model.ipynb
index 3f5569a..e25a4f7 100644
--- a/docs/digits_diffusion_model.ipynb
+++ b/docs/digits_diffusion_model.ipynb
@@ -219,7 +219,7 @@
    "source": [
     "## Building your diffusion model\n",
     "\n",
-    "Now you will start developing the parts of your [diffusion model](https://en.wikipedia.org/wiki/Diffusion_model). It is composed of a (UNet architecture)[https://en.wikipedia.org/wiki/U-Net] backbone and the diffusion layers.\n",
+    "Now you will start developing the parts of your [diffusion model](https://en.wikipedia.org/wiki/Diffusion_model). It is composed of a [UNet architecture](https://en.wikipedia.org/wiki/U-Net) backbone and the diffusion layers.\n",
     "\n",
     "### U-Net Architecture\n",
     "\n",
diff --git a/docs/digits_diffusion_model.md b/docs/digits_diffusion_model.md
index 01f4243..0a6a78a 100644
--- a/docs/digits_diffusion_model.md
+++ b/docs/digits_diffusion_model.md
@@ -116,7 +116,7 @@ plt.show()
 
 ## Building your diffusion model
 
-Now you will start developing the parts of your [diffusion model](https://en.wikipedia.org/wiki/Diffusion_model). It is composed of a (UNet architecture)[https://en.wikipedia.org/wiki/U-Net] backbone and the diffusion layers.
+Now you will start developing the parts of your [diffusion model](https://en.wikipedia.org/wiki/Diffusion_model). It is composed of a [UNet architecture](https://en.wikipedia.org/wiki/U-Net) backbone and the diffusion layers.
 
 ### U-Net Architecture