diff --git a/docs/compiling.md b/docs/compiling.md index d4058aa..4a772ac 100644 --- a/docs/compiling.md +++ b/docs/compiling.md @@ -29,7 +29,7 @@ To install either use cmake --install . --prefix -to install the library to your desired folder, or, if you want to install to C:\Program Files, you need a PwoerShell/CMD running as administrator, and +to install the library to your desired folder, or, if you want to install to C:\Program Files, you need a PowerShell/CMD running as administrator, and cmake --install . @@ -69,7 +69,7 @@ before compilation. Then, emcmake cmake .. emmake make -Compilation will generate two version of the library and executables, one with WebAssembly SIMD isntructions and one without. +Compilation will generate two version of the library and executables, one with WebAssembly SIMD instructions and one without. # Compiling to javascript/wasm # diff --git a/docs/doxygen_style.md b/docs/doxygen_style.md index d9c27e8..032ae35 100644 --- a/docs/doxygen_style.md +++ b/docs/doxygen_style.md @@ -2,7 +2,7 @@ Documentation is still experimental for me, and I might change things down the line. -Here, we describe how to document the source code. This represent so sort of minial set of markers that need to be used. Other markers can be used to enhance the documentation of the code. This serves as a live document that can be updated when needed. +Here, we describe how to document the source code. This represent so sort of minimal set of markers that need to be used. Other markers can be used to enhance the documentation of the code. This serves as a live document that can be updated when needed. I am preferencing `@` over `\`. ## Comment block diff --git a/docs/status.md b/docs/status.md index ee66558..d1ba091 100644 --- a/docs/status.md +++ b/docs/status.md @@ -1,6 +1,6 @@ # Status # -The code is written in C++; the color and wavelet transform steps can employ SIMD instructions on Intel platforms. SIMD instuctions are also available for the block decoder (SSE3) and for the block encoder (AVX512). Other parts of the library may include SIMD in the future, for Intel and ARM; existing implementations can also be improved as there is still decent performance improvements on the table. SIMD instructions are also employed for WebAssembly (Emscripten-based), which is now widely supported in most browsers. +The code is written in C++; the color and wavelet transform steps can employ SIMD instructions on Intel platforms. SIMD instructions are also available for the block decoder (SSE3) and for the block encoder (AVX512). Other parts of the library may include SIMD in the future, for Intel and ARM; existing implementations can also be improved as there is still decent performance improvements on the table. SIMD instructions are also employed for WebAssembly (Emscripten-based), which is now widely supported in most browsers. The encoder supports lossless and quantization-based lossy encoding. There is currently no implementation for rate-control-based encoding.