From 1562fab52211d41713630f44004032dc6a82d012 Mon Sep 17 00:00:00 2001
From: Paul Kaefer <2408155+paulkaefer@users.noreply.github.com>
Date: Tue, 31 Oct 2023 08:33:03 -0500
Subject: [PATCH] added direct link to mxtypes.h in CONTRIBUTING.md (#257)

* added link to mxtypes.h

* switch to relative link
---
 CONTRIBUTING.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index b70c45b7..9a20eb09 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -35,7 +35,7 @@ We are currently using [clang-format](https://clang.llvm.org/docs/ClangFormat.ht
 - `m_camelCase` for member variables.
 - `g_camelCase` for global variables.
 - `p_camelCase` for function parameters.
-- Instead of C++ primitives (e.g. `int`, `long`, etc.), use types in `mxtypes.h` instead. This will help us ensure that variables will be the correct size regardless of the underlying compiler/platform/architecture.
+- Instead of C++ primitives (e.g. `int`, `long`, etc.), use types in [`mxtypes.h`](LEGO1/mxtypes.h) instead. This will help us ensure that variables will be the correct size regardless of the underlying compiler/platform/architecture.
 
 ## Questions?