aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/gfx/buffer_map.rs
diff options
context:
space:
mode:
authorMatt Murphy <matthew.john.murphy@gmail.com>2014-04-30 17:34:13 -0500
committerMs2ger <ms2ger@gmail.com>2014-05-04 23:16:18 +0200
commit8b94a44c0be8d987b873d88bf422b12cac33eec4 (patch)
treedba9aaf2d7de99caaa9b8e03f894e5e05584ab4c /src/components/gfx/buffer_map.rs
parentaf920f442b2c494b5061a44c406aeb1d495ee2aa (diff)
downloadservo-8b94a44c0be8d987b873d88bf422b12cac33eec4.tar.gz
servo-8b94a44c0be8d987b873d88bf422b12cac33eec4.zip
Changes based on review
Diffstat (limited to 'src/components/gfx/buffer_map.rs')
-rw-r--r--src/components/gfx/buffer_map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/gfx/buffer_map.rs b/src/components/gfx/buffer_map.rs
index 33ab8a4b5d2..9b3a6f60988 100644
--- a/src/components/gfx/buffer_map.rs
+++ b/src/components/gfx/buffer_map.rs
@@ -54,7 +54,7 @@ impl BufferKey {
/// A helper struct to keep track of buffers in the HashMap
struct BufferValue<T> {
/// An array of buffers, all the same size
- buffers: Vec<T>,
+ buffers: Vec<T>,
/// The counter when this size was last requested
last_action: uint,
}