Merge pull request #685 from pietervdvn/riQQ-patch-1

Fix typo in code docs
This commit is contained in:
Pieter Vander Vennet 2022-03-02 11:27:52 +01:00 committed by GitHub
commit 38cd4f29ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ export default interface LineRenderingConfigJson {
lineCap?: "round" | "square" | "butt" | string | TagRenderingConfigJson
/**
* Wehter or not to fill polygons
* Whether or not to fill polygons
*/
fill?: "yes" | "no" | TagRenderingConfigJson
@ -51,4 +51,4 @@ export default interface LineRenderingConfigJson {
* This simplifies programming. Refer to the CalculatedTags.md-documentation for more details
*/
offset?: number | TagRenderingConfigJson
}
}

View file

@ -2,7 +2,7 @@ import {AndOrTagConfigJson} from "./TagConfigJson";
/**
* A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.
* For an _editable_ tagRenerdering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one
* For an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one
*/
export interface TagRenderingConfigJson {
@ -91,4 +91,4 @@ export interface TagRenderingConfigJson {
}
}[]
}
}