Fixing one misformatted doc comment.

Signed-off-by: Jakub Sobon <jakub.sobon@elohim.sk>
This commit is contained in:
Jakub Sobon 2023-02-08 16:37:38 -05:00
parent 5a36b82b2e
commit fa5cbadc35
No known key found for this signature in database
GPG Key ID: F2451A77FB05D3B7
1 changed files with 5 additions and 5 deletions

View File

@ -95,15 +95,15 @@ func SkipSlopesLTE(v int) Option {
// This only has a visible effect when the horizontal segment has height of two
// or the vertical segment has width of two.
// Without this option segments with height / width of two look like this:
// - |
// - |
// --- ||
// |
// |
//
// With this option:
//
// --- |
// - ||
// |
// --- |
// - ||
// |
func ReverseSlopes() Option {
return option(func(opts *options) {
opts.reverseSlopes = true