From 97a04cf7d7641746a54f85fb9b1ef963e3b4c912 Mon Sep 17 00:00:00 2001 From: Pete Forrest <60230910+PCForrest@users.noreply.github.com> Date: Tue, 26 Aug 2025 07:45:45 +0100 Subject: [PATCH] Update Coding-Conventions.md Corrected the 2nd spelling of 'conventionally' on line 32. --- website/docs/Coding-Conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/Coding-Conventions.md b/website/docs/Coding-Conventions.md index f303803f7c..e248d0534f 100644 --- a/website/docs/Coding-Conventions.md +++ b/website/docs/Coding-Conventions.md @@ -29,7 +29,7 @@ local project = p.project local m = p.vstudio.vc2010 ``` -The alias `p` is used conventionally as a shortcut for the `premake` namespace. The alias `m` is conventially used to represent the module being implemented. +The alias `p` is used conventionally as a shortcut for the `premake` namespace. The alias `m` is conventionally used to represent the module being implemented. Using aliases saves some keystrokes when coding. And since Premake embeds all of its scripts into the release executables, it saves on the final download size as well.