Skip to content

Commit a6d04d3

Browse files
committed
Copilot updates
1 parent 8ded6f8 commit a6d04d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ See [this blog post](https://walbourn.github.io/modern-c++-bitmask-types/) for m
143143

144144
- Don’t use raw pointers for ownership.
145145
- Avoid macros for constants—prefer `constexpr` or `inline` `const`.
146-
- Dont put implementation logic in header files unless using templates, although the DirectXMesh library does use an .inl file for performance for a few specific utility functions that are called in tight loops (e.g., `IsValidIB`, `IsValidVB`).
146+
- Don't put implementation logic in header files unless using templates, although the DirectXMesh library does use an .inl file for performance for a few specific utility functions that are called in tight loops (e.g., `IsValidIB`, `IsValidVB`).
147147
- Avoid using `using namespace` in header files to prevent polluting the global namespace.
148148

149149
## Naming Conventions
@@ -253,7 +253,7 @@ Non-Windows builds (Linux/WSL) use `<directx/dxgiformat.h>` and `<wsl/winadapter
253253

254254
### Error Codes
255255

256-
The following symbols are not custom error codes, but aliases for `HRESULT_FROM_WIN32` error values.
256+
The following symbols are not custom error codes, but aliases for `HRESULT_FROM_WIN32` error codes.
257257

258258
| Symbol | Standard Win32 HRESULT |
259259
| -------- | ------------- |

0 commit comments

Comments
 (0)