Skip to content

Commit

Permalink
fix: remove escaped quotes in plugin explanations
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromil committed Dec 28, 2022
1 parent 3eb442f commit a4f417d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/filter/curves/curves.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ void f0r_get_param_info(f0r_param_info_t* info, int param_index)
case 5:
info->name = "Bézier spline";
info->type = F0R_PARAM_STRING;
info->explanation = "Use cubic Bézier spline. Has to be a sorted list of points in the format \"handle1x;handle1y#pointx;pointy#handle2x;handle2y\"(pointx = in, pointy = out). Points are separated by a \"|\".The values can have \"double\" precision. x, y for points should be in the range 0-1. x,y for handles might also be out of this range.";
info->explanation = "Use cubic Bézier spline. Has to be a sorted list of points in the format 'handle1x;handle1y#pointx;pointy#handle2x;handle2y'(pointx = in, pointy = out). Points are separated by a '|'.The values can have 'double' precision. x, y for points should be in the range 0-1. x,y for handles might also be out of this range.";
default:
if (param_index > 5) {
info->name = get_param_name(param_index - 6);
Expand Down
4 changes: 2 additions & 2 deletions src/filter/pixeliz0r/pixeliz0r.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ void f0r_get_param_info(f0r_param_info_t* info, int param_index)
case 0:
info->name = "Block width";
info->type = F0R_PARAM_DOUBLE;
info->explanation = "Horizontal size of one \"pixel\"";
info->explanation = "Horizontal size of one 'pixel'";
break;
case 1:
info->name = "Block height";
info->type = F0R_PARAM_DOUBLE;
info->explanation = "Vertical size of one \"pixel\"";
info->explanation = "Vertical size of one 'pixel'";
break;
}
}
Expand Down

0 comments on commit a4f417d

Please sign in to comment.