summaryrefslogtreecommitdiffstats
path: root/packages/svgbob/src/buffer/property_buffer.rs
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2023-08-10 23:47:41 +0800
committerGitHub <noreply@github.com>2023-08-10 23:47:41 +0800
commit3585a88213c5168a3e7943e02d9248858c95d628 (patch)
treecfe3e07e9007b66ec0e076be62ec3640e8c6421b /packages/svgbob/src/buffer/property_buffer.rs
parent608db0bbc4589952fce86cea1bf5844d9943102f (diff)
parent228e3511d535150404dd215b3f3d48b80b2db857 (diff)
Merge pull request #99 from deining/bump-workflow-actions
Bump workflow actions
Diffstat (limited to 'packages/svgbob/src/buffer/property_buffer.rs')
-rw-r--r--packages/svgbob/src/buffer/property_buffer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/svgbob/src/buffer/property_buffer.rs b/packages/svgbob/src/buffer/property_buffer.rs
index c55c8bb..a91a475 100644
--- a/packages/svgbob/src/buffer/property_buffer.rs
+++ b/packages/svgbob/src/buffer/property_buffer.rs
@@ -12,7 +12,7 @@ mod property;
/// which contains the property of each cell
/// This will be used in the first phase of converting ascii diagrams into fragment buffer
/// The properties are generated once and will be repeatedly used for the second phase
-/// where testing the neighboring charaters to determine the fragment to be drawn for that cell.
+/// where testing the neighboring characters to determine the fragment to be drawn for that cell.
#[derive(Default, Clone)]
pub struct PropertyBuffer<'p>(HashMap<Cell, &'p Property>);