flatbuffers -> FlatBuffers
diff --git a/runtime/bindings/python/vm.cc b/runtime/bindings/python/vm.cc
index 9a268c1..f74e8aa 100644
--- a/runtime/bindings/python/vm.cc
+++ b/runtime/bindings/python/vm.cc
@@ -155,7 +155,7 @@
     iree_allocator_free(deallocator, raw_ptr);
   }
 
-  CheckApiStatus(status, "Error creating vm module from flatbuffer");
+  CheckApiStatus(status, "Error creating vm module from FlatBuffer");
   auto py_module = VmModule::StealFromRawPtr(module);
   py_module.stashed_flatbuffer_blob = flatbuffer_blob_object;
   return py_module;
diff --git a/runtime/bindings/python/vm.h b/runtime/bindings/python/vm.h
index 48fdbab..e3632dd 100644
--- a/runtime/bindings/python/vm.h
+++ b/runtime/bindings/python/vm.h
@@ -133,7 +133,7 @@
   py::object get_stashed_flatbuffer_blob() { return stashed_flatbuffer_blob; }
 
  private:
-  // If the module was created from a flatbuffer blob, we stash it here.
+  // If the module was created from a FlatBuffer blob, we stash it here.
   py::object stashed_flatbuffer_blob = py::none();
 };