- Make number in comment match the targets in that section of the
  Makefile.
- Update the Python version number so we're using the library built
  from the current working sources.
diff --git a/Demo/embed/Makefile b/Demo/embed/Makefile
index 4269946..c8d538b 100644
--- a/Demo/embed/Makefile
+++ b/Demo/embed/Makefile
@@ -10,7 +10,7 @@
 srcdir=		../..
 
 # Python version
-VERSION=	2.2
+VERSION=	2.3
 
 # Compiler flags
 OPT=		-g
@@ -28,7 +28,7 @@
 MODLIBS=	
 ALLLIBS=	$(LIBPYTHON) $(MODLIBS) $(LIBS) $(SYSLIBS)
 
-# Build the demo application
+# Build the demo applications
 all:		demo loop importexc
 demo:		demo.o
 		$(CC) $(LDFLAGS) demo.o $(ALLLIBS) -o demo