Rename C++ RustStr to Str
diff --git a/demo-cxx/demo.cc b/demo-cxx/demo.cc
index 500ee3a..3900572 100644
--- a/demo-cxx/demo.cc
+++ b/demo-cxx/demo.cc
@@ -9,7 +9,7 @@
 
 ThingC::~ThingC() { std::cout << "done with ThingC" << std::endl; }
 
-std::unique_ptr<ThingC> make_demo(cxxbridge::RustStr appname) {
+std::unique_ptr<ThingC> make_demo(cxxbridge::Str appname) {
   return std::unique_ptr<ThingC>(new ThingC(appname));
 }