1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 05:40:03 -04:00

Replace every ... with … like some sort of crazy person

Also fix some small typos

Closes https://github.com/emilk/egui/pull/736
This commit is contained in:
Emil Ernerfeldt
2021-10-13 11:52:34 +02:00
parent 85941033e8
commit 6f699b3391
21 changed files with 35 additions and 35 deletions

View File

@@ -14,7 +14,7 @@ pub struct Shadow {
}
impl Shadow {
/// Tooltips, menus, ...
/// Tooltips, menus,
pub fn small_dark() -> Self {
Self {
extrusion: 16.0,
@@ -22,7 +22,7 @@ impl Shadow {
}
}
/// Tooltips, menus, ...
/// Tooltips, menus,
pub fn small_light() -> Self {
Self {
extrusion: 16.0,

View File

@@ -81,7 +81,7 @@ impl Path {
for i in 1..n - 1 {
let mut n1 = (points[i + 1] - points[i]).normalized().rot90();
// Handle duplicated points (but not triplicated...):
// Handle duplicated points (but not triplicated):
if n0 == Vec2::ZERO {
n0 = n1;
} else if n1 == Vec2::ZERO {
@@ -124,7 +124,7 @@ impl Path {
let next_i = if i + 1 == n { 0 } else { i + 1 };
let mut n1 = (points[next_i] - points[i]).normalized().rot90();
// Handle duplicated points (but not triplicated...):
// Handle duplicated points (but not triplicated):
if n0 == Vec2::ZERO {
n0 = n1;
} else if n1 == Vec2::ZERO {