diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-02-10 10:05:43 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-02-10 10:05:43 +0100 |
| commit | 6e198bf7606847b0847487a4847d6a3ee3621d2d (patch) | |
| tree | 0609efafa0836495373f5fbe36a0d8eb999e2fe4 /src/library | |
| parent | ed1197a3db0f8e9df4e76ddaa2ab27242053faee (diff) | |
Fix CMYK formatting
Diffstat (limited to 'src/library')
| -rw-r--r-- | src/library/utility.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/library/utility.rs b/src/library/utility.rs index ca9d4350..4fb254de 100644 --- a/src/library/utility.rs +++ b/src/library/utility.rs @@ -118,7 +118,8 @@ pub fn rgb(_: &mut EvalContext, args: &mut Args) -> TypResult<Value> { }, )) } -/// Create an CMYK color. + +/// Create a CMYK color. pub fn cmyk(_: &mut EvalContext, args: &mut Args) -> TypResult<Value> { struct Component(u8); |
