Update website
Build and Deploy / build_and_deploy (push) Failing after 11s

This commit is contained in:
2026-06-11 23:08:04 +03:00
parent e81f3261fb
commit 1555a0fbb6
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ ReadOnlySpan<Pixel> pixels = image.AsSpan<Pixel>();
You can write any image file using `StbImage.WritePng`/`WriteBmp`/`WriteTga`/`WriteHdr` and `WriteJpg` functions. These will take a span, a stream and information about the format of
the image.
If your wish is to write an `StbImage` instance back to disk, you can use the instance
If you wish to write an `StbImage` instance back to disk, you can use the instance
functions of the same name.
```cs
@@ -69,7 +69,7 @@ image.WriteJpg(stream, quality);
```
> [!WARNING]
> These funtions depend on non-thread safe global options. Even though the
> These functions depend on non-thread safe global options. Even though the
> functions themselves are reentrant, it might require some synchronization.
> This is a limitation of `stb_image_write` rather than `ReFuel.StbImage`.