diff --git a/dist/index.html b/dist/index.html
index f1ce7fa8e..73f6ff154 100644
--- a/dist/index.html
+++ b/dist/index.html
@@ -420,8 +420,30 @@ class Class10 {
stateDiagram
- s1
+ State1
+
+
+
+ stateDiagram
+ [*] --> First
+ state First {
+ [*] --> second
+ second --> [*]
+ }
+
+
+ stateDiagram
+ State1: The state with a note
+ note right of State1
+ Important information! You can write
+ notes.
+ end note
+ State1 --> State2
+ note left of State2 : This is the note to the left.
+
+
+