From 5ca1d58b36993759951dd04099f3ff817794d60a Mon Sep 17 00:00:00 2001 From: Ben Visness Date: Thu, 29 Nov 2018 13:21:05 -0600 Subject: [PATCH] Improve grammar/spelling --- HandmadeMath.h | 4 +--- README.md | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/HandmadeMath.h b/HandmadeMath.h index 0e1b91a..fc8e00b 100644 --- a/HandmadeMath.h +++ b/HandmadeMath.h @@ -177,9 +177,7 @@ matrices are column-major, this should have been named 'Columns' from the start. 'Rows' is still present, but has been deprecated. 1.7.1 - (*) Changed operator[] to take in a const ref int instead of a int. - Simple dumb mistake. NOTE: The compiler still wont inline operator[] - for some reason + (*) Changed operator[] to take a const ref int instead of an int. LICENSE diff --git a/README.md b/README.md index 167dafd..79f6909 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ To get started, go download [the latest release](https://github.com/HandmadeMath Version | Changes | ----------------|----------------| -**1.7.1** | Changed operator[] to take in a const ref int instead of a int. Simple mistake +**1.7.1** | Changed operator[] to take a const ref int instead of an int. **1.7.0** | Renamed the 'Rows' member of hmm_mat4 to 'Columns'. Since our matrices are column-major, this should have been named 'Columns' from the start. 'Rows' is still present, but has been deprecated. **1.6.0** | Added array subscript operators for vector and matrix types in C++. This is provided as a convenience, but be aware that it may incur an extra function call in unoptimized builds. **1.5.1** | Fixed a bug with uninitialized elements in HMM_LookAt.