diff options
Diffstat (limited to 'lex/type.go')
-rw-r--r-- | lex/type.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lex/type.go b/lex/type.go index eec2f3e..a906ac2 100644 --- a/lex/type.go +++ b/lex/type.go @@ -3,8 +3,7 @@ package lex type Screenplay []Line -type Line struct{ - Type string +type Line struct { + Type string Contents string } - |