Fix spelling errors and capitalization.

This commit is contained in:
Joseph Crail 2014-09-02 01:35:58 -04:00
parent d59d97cbec
commit b7bfe04b2d
48 changed files with 64 additions and 64 deletions

View file

@ -148,12 +148,12 @@ impl<T,U,D:SnapshotVecDelegate<T,U>> SnapshotVec<T,U,D> {
match self.undo_log.pop().unwrap() {
OpenSnapshot => {
// This indicates a failure to obey the stack discipline.
fail!("Cannot rollback an uncommited snapshot");
fail!("Cannot rollback an uncommitted snapshot");
}
CommittedSnapshot => {
// This occurs when there are nested snapshots and
// the inner is commited but outer is rolled back.
// the inner is committed but outer is rolled back.
}
NewElem(i) => {