Skip to content

Commit ab86079

Browse files
Merge pull request #52 from SeanKilleen/spellchecking
Fix a few spelling misses
2 parents 7eabb87 + 87b377a commit ab86079

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/imagesharp/memorymanagement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Memory Management
22

3-
Starting with ImageSharp 2.0, the library uses large (~4MB) discontigous chunks of unmanaged memory to represent multi-megapixel images. Internally, these buffers are heavily pooled to reduce OS allocation overhead. Unlike in ImageSharp 1.0, the pools are automatically trimmed after a certain amount of allocation inactivity, releasing the buffers to the OS, making the library more suitable for applications that do imaging operations in a periodic manner.
3+
Starting with ImageSharp 2.0, the library uses large (~4MB) discontiguous chunks of unmanaged memory to represent multi-megapixel images. Internally, these buffers are heavily pooled to reduce OS allocation overhead. Unlike in ImageSharp 1.0, the pools are automatically trimmed after a certain amount of allocation inactivity, releasing the buffers to the OS, making the library more suitable for applications that do imaging operations in a periodic manner.
44

55
The buffer allocation and pooling behavior is implemented by @"SixLabors.ImageSharp.Memory.MemoryAllocator" which is being used through @"SixLabors.ImageSharp.Configuration"'s @"SixLabors.ImageSharp.Configuration.MemoryAllocator" property within the library, therefore it's configurable and replaceable by the user.
66

index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Six Labors Documentation.
1+
# Six Labors Documentation
22

33
We aim to provide modern, cross-platform, incredibly powerful yet beautifully simple graphics libraries. Built against .NET Standard, our libraries can be used in device, cloud, and embedded/IoT scenarios.
44

55
You can find tutorials, examples and API details covering all Six Labors projects.
66

77
>[!NOTE]
8-
>Documentation for previous releases can be found at https://docs-v1.sixlabors.com/.
8+
>Documentation for previous releases can be found at <https://docs-v1.sixlabors.com/>.
99
1010
### [API documentation](api/index.md)
1111

@@ -67,7 +67,7 @@ We have implemented short self-contained sample projects for a few specific use
6767
1. [Avatar with rounded corners](https://github.com/SixLabors/Samples/tree/main/ImageSharp/AvatarWithRoundedCorner)<br/>
6868
Crops rounded corners of a source image leaving a nice rounded avatar.
6969
2. [Draw watermark on image](https://github.com/SixLabors/Samples/tree/main/ImageSharp/DrawWaterMarkOnImage)<br/>
70-
Draw water mark over an image automaticaly scaling the font size to fill the available space.
70+
Draw water mark over an image automatically scaling the font size to fill the available space.
7171
3. [Change default encoder options](https://github.com/SixLabors/Samples/tree/main/ImageSharp/ChangeDefaultEncoderOptions)<br/>
7272
Provides an example on how you go about switching out the registered encoder for a file format and changing its default options in the process.
7373
4. [Draw text along a path](https://github.com/SixLabors/Samples/tree/main/ImageSharp/DrawingTextAlongAPath)<br/>

0 commit comments

Comments
 (0)